diff options
| author | Thibaut Horel <thibaut.horel@gmail.com> | 2012-11-08 22:22:09 +0100 |
|---|---|---|
| committer | Thibaut Horel <thibaut.horel@gmail.com> | 2012-11-08 22:22:09 +0100 |
| commit | 3e83f67dd0f3e16631207596f849e0977aa6d020 (patch) | |
| tree | 4b1cf0262fba02fc97c284e12a621e73a5820087 /schema.sql | |
| parent | c89a1548784a3d8049e1884207887f765edd5313 (diff) | |
| download | famille-flask-3e83f67dd0f3e16631207596f849e0977aa6d020.tar.gz | |
Cosmetic changes
Diffstat (limited to 'schema.sql')
| -rw-r--r-- | schema.sql | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,7 +9,7 @@ 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')), + date string default (strftime('%Y-%m-%dT%H:%M:%SZ','now')), content string not null, content_cache string not null, user_id integer, @@ -19,7 +19,7 @@ create table news ( drop table if exists comments; create table comments ( id integer primary key autoincrement, - date string default (strftime('%Y-%m-%dT%H:%M:%S','now')), + date string default (strftime('%Y-%m-%dT%H:%M:%SZ','now')), content string not null, content_cache string not null, user_id integer, |
