eesyphp/data/sqlite.init-db.sql
2020-04-18 00:51:33 +02:00

9 lines
198 B
SQL

CREATE TABLE item (
id INTEGER AUTOINCREMENT,
name text COLLATE NOCASE NOT NULL,
date INTEGER,
status text NOT NULL,
description text COLLATE NOCASE NULL,
PRIMARY KEY(id)
);