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 bae55ab..cda7bc3 100644
--- a/schema.sql
+++ b/schema.sql
@@ -1,7 +1,7 @@
drop table if exists users;
create table users (
id integer primary key autoincrement,
- name string not null,
+ user_name string not null,
password string not null
);