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