diff --git a/create_table_ public.document_types.sql b/create_table_ public.document_types.sql new file mode 100644 index 0000000..a53c96b --- /dev/null +++ b/create_table_ public.document_types.sql @@ -0,0 +1,16 @@ +-- Table: public.document_types + +-- DROP TABLE IF EXISTS public.document_types; + +CREATE TABLE IF NOT EXISTS public.document_types +( + type_id integer NOT NULL DEFAULT nextval('document_types_type_id_seq'::regclass), + type_name character varying(100) COLLATE pg_catalog."default" NOT NULL, + CONSTRAINT document_types_pkey PRIMARY KEY (type_id) +) + +TABLESPACE pg_default; + +ALTER TABLE IF EXISTS public.document_types + OWNER to dbuser01; + \ No newline at end of file