mirror of https://github.com/xfarrow/blink
27 lines
804 B
SQL
27 lines
804 B
SQL
-- Table: public.OrganizationPost
|
|
|
|
-- DROP TABLE IF EXISTS public."OrganizationPost";
|
|
|
|
CREATE TABLE IF NOT EXISTS public."OrganizationPost"
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
organization_id integer NOT NULL,
|
|
content text NOT NULL,
|
|
created_at timestamp without time zone DEFAULT now(),
|
|
original_author integer NOT NULL,
|
|
CONSTRAINT "AuthorIdFK" FOREIGN KEY (original_author)
|
|
REFERENCES public."Person" (id) MATCH SIMPLE
|
|
ON UPDATE NO ACTION
|
|
ON DELETE CASCADE
|
|
NOT VALID,
|
|
CONSTRAINT "OrganizationIdFk" FOREIGN KEY (organization_id)
|
|
REFERENCES public."Organization" (id) MATCH SIMPLE
|
|
ON UPDATE CASCADE
|
|
ON DELETE CASCADE
|
|
NOT VALID
|
|
)
|
|
|
|
TABLESPACE pg_default;
|
|
|
|
ALTER TABLE IF EXISTS public."OrganizationPost"
|
|
OWNER to postgres; |