From 84a3e2f6bcb4da4ab156e39d79f0f8a36c2a0e90 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 18 Apr 2015 14:32:27 +0200 Subject: added placeholders for directories added user app and content (empty for now) added storage and sqlite script --- sql/sqlite3.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 sql/sqlite3.sql (limited to 'sql') diff --git a/sql/sqlite3.sql b/sql/sqlite3.sql new file mode 100644 index 0000000..e524ce6 --- /dev/null +++ b/sql/sqlite3.sql @@ -0,0 +1,7 @@ +drop table if exists users; + +create table users( + id integer primary key autoincrement not null, + username varchar(32) unique not null, + password varchar(32) not null +); -- cgit v1.2.3-54-g00ecf