-- Table: public.t1

-- DROP TABLE public.t1;

CREATE TABLE public.t1
(
    t1p integer NOT NULL DEFAULT nextval('t1_t1p1_seq'::regclass),
    t1g character varying(255) COLLATE pg_catalog."default",
    CONSTRAINT t1_pkey PRIMARY KEY (t1p)
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;

ALTER TABLE public.t1
    OWNER to postgres;

GRANT INSERT, SELECT, UPDATE, DELETE ON TABLE public.t1 TO "VRU";

GRANT ALL ON TABLE public.t1 TO postgres;


-- Table: public.t2

-- DROP TABLE public.t2;

CREATE TABLE public.t2
(
    t2p integer NOT NULL DEFAULT nextval('t2_t2p_seq'::regclass),
    t2g character varying(255) COLLATE pg_catalog."default",
    CONSTRAINT t2_pkey PRIMARY KEY (t2p)
)
WITH (
    OIDS = FALSE
)
TABLESPACE pg_default;

ALTER TABLE public.t2
    OWNER to postgres;

GRANT INSERT, SELECT, UPDATE, DELETE ON TABLE public.t2 TO "VRU";

GRANT ALL ON TABLE public.t2 TO postgres;