Fix sqlite.init-db.sql file
This commit is contained in:
parent
af1d112ae5
commit
4a4f804ae2
1 changed files with 2 additions and 3 deletions
|
@ -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)
|
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue