aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/schema.sql b/schema.sql
new file mode 100644
index 0000000..3c3231f
--- /dev/null
+++ b/schema.sql
@@ -0,0 +1,6 @@
+drop table if exists users;
+create table users (
+ id integer primary key autoincrement,
+ user string not null,
+ password string not null
+);