system/sql/qt/pgsql/schema/system_todo_assign.sql
2016-01-13 19:10:28 +01:00

9 lines
226 B
SQL

CREATE TABLE system.todo_assign (
"todo" integer NOT NULL,
"user" integer NOT NULL,
"time" timestamp with time zone NOT NULL,
CONSTRAINT system_todo_assign_pk_todo_user PRIMARY KEY ("todo", "user")
)
WITH (
OIDS=FALSE
);