mirror of
https://github.com/Cernobor/oko-server.git
synced 2025-02-24 08:27:17 +00:00
7 lines
171 B
SQL
7 lines
171 B
SQL
CREATE TABLE proposals (
|
|
owner_id integer NOT NULL REFERENCES users(id) ON DELETE RESTRICT,
|
|
description text NOT NULL,
|
|
how text NOT NULL
|
|
);
|
|
|
|
PRAGMA user_version = 2; |