20 lines
658 B
SQL
20 lines
658 B
SQL
DROP TABLE tutorials;
|
|
|
|
CREATE TABLE tutorials
|
|
(
|
|
id bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 9223372036854775807 CACHE 1 ),
|
|
published boolean,
|
|
tobepublished boolean,
|
|
title character varying(255) COLLATE pg_catalog."default",
|
|
userid bigint,
|
|
created timestamp with time zone,
|
|
modified timestamp with time zone,
|
|
description character varying(255) COLLATE pg_catalog."default",
|
|
CONSTRAINT tutorials_title_key UNIQUE (title),
|
|
CONSTRAINT "tutorial_user_FK" FOREIGN KEY (userid)
|
|
REFERENCES public.users (id) MATCH SIMPLE
|
|
ON UPDATE NO ACTION
|
|
ON DELETE NO ACTION
|
|
)
|
|
|