mirror of
https://github.com/Cernobor/oko-server.git
synced 2025-02-24 08:27:17 +00:00
* DB migration rewritten: * Migration scripts are embedded as FS. * Migration versions are handled automatically. * Use generics in utils.
6 lines
146 B
SQL
6 lines
146 B
SQL
CREATE TABLE proposals (
|
|
owner_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT,
|
|
description text NOT NULL,
|
|
how text NOT NULL
|
|
);
|