eesyphp/example/data/pgsql.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

9 lines
205 B
SQL

CREATE TABLE public.item (
id SERIAL NOT NULL,
name text NOT NULL,
date timestamp with time zone,
status text NOT NULL,
description text NULL
);
ALTER TABLE public.item OWNER TO items;