From cacbab512d4102e6db19c6487c4d291006dd0fda Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Fri, 21 Nov 2014 11:02:46 -0500 Subject: Initial commit. --- config/create-tables.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 config/create-tables.sql (limited to 'config/create-tables.sql') diff --git a/config/create-tables.sql b/config/create-tables.sql new file mode 100644 index 0000000..9f6d93a --- /dev/null +++ b/config/create-tables.sql @@ -0,0 +1,7 @@ +DROP TABLE IF EXISTS emails; +CREATE TABLE emails ( + sender TEXT NOT NULL PRIMARY KEY, + count INTEGER DEFAULT 20, + created TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + modified TIMESTAMP DEFAULT CURRENT_TIMESTAMP +); -- cgit v1.2.3