diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2012-11-05 00:05:32 -0500 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2012-11-05 00:05:32 -0500 |
| commit | 6a1d6a7365fb917784d378cf3b3683c85bb81b48 (patch) | |
| tree | 50f15b242488337acfd2af82f4a3068ce654fc9d /schema.sql | |
| parent | ba4695dbdfcb96af70f9139ad279536d9398d29a (diff) | |
| download | famille-flask-6a1d6a7365fb917784d378cf3b3683c85bb81b48.tar.gz | |
starting to hook things up
Diffstat (limited to 'schema.sql')
| -rw-r--r-- | schema.sql | 6 |
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 +); |
