diff options
Diffstat (limited to 'schema.sql')
| -rw-r--r-- | schema.sql | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -4,3 +4,13 @@ create table users ( name string not null, password string not null ); + +drop table if exists news; +create table news ( + id integer primary key autoincrement, + title string not null, + date string default (strftime('%Y-%m-%dT%H:%M:%S','now')), + content string not null, + user_id integer, + FOREIGN KEY(user_id) REFERENCES users(id) +); |
