oko-server/server/sql_schema/V2_proposals.sql
zegkljan 19fc8e0322 DB migration, proposals.
* DB schema is migrated.
* Added mechanism for proposing app improvements.
2022-08-13 02:20:34 +02:00

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;