Add create_table_ public.document_types.sql
This commit is contained in:
parent
a5ed859cb6
commit
feb2a8f504
16
create_table_ public.document_types.sql
Normal file
16
create_table_ public.document_types.sql
Normal file
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user