summaryrefslogtreecommitdiff
path: root/sql/sqlite3.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sqlite3.sql')
-rw-r--r--sql/sqlite3.sql7
1 files changed, 7 insertions, 0 deletions
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
+);