https://bugs.documentfoundation.org/show_bug.cgi?id=113617

--- Comment #13 from [email protected] ---
-- Table: public.test1

-- DROP TABLE public.test1;

CREATE TABLE public.test1
(
    id1 integer NOT NULL,
    text1 character varying COLLATE pg_catalog."default",
    CONSTRAINT test1_pkey PRIMARY KEY (id1)
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;

ALTER TABLE public.test1
    OWNER to postgres;





-- Table: public.test2

-- DROP TABLE public.test2;

CREATE TABLE public.test2
(
    id2 integer NOT NULL,
    id1 integer,
    text2 character varying COLLATE pg_catalog."default",
    CONSTRAINT test2_pkey PRIMARY KEY (id2),
    CONSTRAINT test1_fkey FOREIGN KEY (id1)
        REFERENCES public.test1 (id1) MATCH SIMPLE
        ON UPDATE NO ACTION
        ON DELETE NO ACTION
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;

ALTER TABLE public.test2
    OWNER to postgres;

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to