Fix sqlite.init-db.sql file

This commit is contained in:
Benjamin Renard 2020-11-18 18:54:15 +01:00
parent af1d112ae5
commit 4a4f804ae2

View file

@ -1,8 +1,7 @@
CREATE TABLE item ( CREATE TABLE item (
id INTEGER AUTOINCREMENT, id INTEGER PRIMARY KEY,
name text COLLATE NOCASE NOT NULL, name text COLLATE NOCASE NOT NULL,
date INTEGER, date INTEGER,
status text NOT NULL, status text NOT NULL,
description text COLLATE NOCASE NULL, description text COLLATE NOCASE NULL
PRIMARY KEY(id)
); );