eesyphp/example/data/sqlite.init-db.sql
Benjamin Renard 4f47dc056d Tpl: Add stuff to handle static files
* Move example application in example sub-directory
* Widely use App::get() instead of Config::get()
2023-02-12 00:30:36 +01:00

8 lines
175 B
SQL

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