aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2012-11-05 00:05:32 -0500
committerGuillaume Horel <guillaume.horel@gmail.com>2012-11-05 00:05:32 -0500
commit6a1d6a7365fb917784d378cf3b3683c85bb81b48 (patch)
tree50f15b242488337acfd2af82f4a3068ce654fc9d /schema.sql
parentba4695dbdfcb96af70f9139ad279536d9398d29a (diff)
downloadfamille-flask-6a1d6a7365fb917784d378cf3b3683c85bb81b48.tar.gz
starting to hook things up
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
+);