Datenbankpfade angepasst.
Tabellenstruktur hinzugefügt
This commit is contained in:
49
haltung.txt
Normal file
49
haltung.txt
Normal file
@@ -0,0 +1,49 @@
|
||||
-- Table: public.haltung
|
||||
|
||||
-- DROP TABLE IF EXISTS public.haltung;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.haltung
|
||||
(
|
||||
id integer NOT NULL DEFAULT nextval('haltung_id_seq'::regclass),
|
||||
guid text COLLATE pg_catalog."default",
|
||||
ref_projekt_guid text COLLATE pg_catalog."default",
|
||||
objektbezeichnung text COLLATE pg_catalog."default",
|
||||
bewertungklasse integer,
|
||||
dn integer,
|
||||
material text COLLATE pg_catalog."default",
|
||||
CONSTRAINT haltung_pkey PRIMARY KEY (id)
|
||||
)
|
||||
|
||||
TABLESPACE pg_default;
|
||||
|
||||
ALTER TABLE IF EXISTS public.haltung
|
||||
OWNER to sanplaner;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
CREATE TABLE IF NOT EXISTS public.haltung
|
||||
(
|
||||
id SERIAL PRIMARY KEY,
|
||||
guid text COLLATE pg_catalog."default",
|
||||
ref_projekt_guid text COLLATE pg_catalog."default",
|
||||
objektbezeichnung text COLLATE pg_catalog."default",
|
||||
bewertungklasse integer,
|
||||
dn integer,
|
||||
material text COLLATE pg_catalog."default"
|
||||
)
|
||||
|
||||
TABLESPACE pg_default;
|
||||
|
||||
ALTER TABLE IF EXISTS public.haltung
|
||||
OWNER to sanplaner;
|
||||
Reference in New Issue
Block a user