This commit is contained in:
Christoph Lienhard 2019-10-13 22:54:31 +02:00
parent 1015341009
commit 0c24b93605

View file

@ -46,7 +46,7 @@ CREATE TABLE public.answer
(
question_id integer REFERENCES public."question" (id) ON UPDATE CASCADE ON DELETE CASCADE,
user_login character varying(8) REFERENCES public."user" ON UPDATE CASCADE ON DELETE CASCADE,
postition integer NOT NULL,
position integer NOT NULL,
text character varying(5000),
primary key (question_id, user_login)
);