From 553cc9f1becbc657eef6414406ef93a204a4c485 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Tue, 31 Jan 2012 11:18:32 -0800 Subject: [PATCH] add sql script to create history tracking DB --- data/history.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 data/history.sql diff --git a/data/history.sql b/data/history.sql new file mode 100644 index 0000000..6b31f77 --- /dev/null +++ b/data/history.sql @@ -0,0 +1,6 @@ +CREATE TABLE console ( + work_dir TEXT NOT NULL, + command TEXT PRIMARY KEY NOT NULL, + arguments TEXT, + time TIMESTAMP NOT NULL +);