aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2012-11-07 00:23:53 +0100
committerThibaut Horel <thibaut.horel@gmail.com>2012-11-07 00:23:53 +0100
commite143cf83baf0c50da27251cee4f5e3a8929586a6 (patch)
treeaaa1e7f1b782aa10120a77490fe8c9abc7bad044 /schema.sql
parent6a1d6a7365fb917784d378cf3b3683c85bb81b48 (diff)
downloadfamille-flask-e143cf83baf0c50da27251cee4f5e3a8929586a6.tar.gz
Code cleanup. Login is now functional.
There is a script createdb.py to create the db from the schema.sql file
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
);