aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2012-11-07 22:22:58 -0500
committerGuillaume Horel <guillaume.horel@gmail.com>2012-11-07 22:22:58 -0500
commitd7e915f77c42f6d0c5a85e03d87106c27082ec99 (patch)
tree41c5221cb470c6c0fc677c528f4b8deaec74922c /schema.sql
parente5ecbccd2aba5b7ce0c8ab363e2a5502f5c6b8c9 (diff)
downloadfamille-flask-d7e915f77c42f6d0c5a85e03d87106c27082ec99.tar.gz
reworked the templates
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
);