sqldb-ws/db/autoload/user_model.sql
2024-01-04 15:14:59 +01:00

116 lines
2.5 KiB
PL/PgSQL

-- This script was generated by a beta version of the ERD tool in pgAdmin 4.
-- Please log an issue at https://redmine.postgresql.org/projects/pgadmin4/issues/new if you find any bugs, including reproduction steps.
BEGIN;
CREATE TABLE IF NOT EXISTS public.axis
(
id SERIAL,
name character varying(255),
entity_id integer,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.employee
(
id SERIAL,
name character varying(255),
firstname character varying(255),
mail character varying(255),
address character varying(255),
zipcode bigint,
city character varying(255),
phonenumber bigint,
mobilenumber bigint,
socialinsurance bigint,
persontocontactname character varying(255),
persontocontactphone bigint,
"position" character varying(255),
salary money,
entrydate timestamp without time zone,
exitdate timestamp without time zone,
contracttype character varying(255),
dbuser_id integer,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.entity
(
id SERIAL,
type character varying(255),
parent_id bigint,
description text,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.project
(
id SERIAL,
name character varying(255),
entity_id integer,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.metric
(
id SERIAL,
name character varying(255),
entity_id integer,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.metricvalue
(
id SERIAL,
measuredate date,
intvalue integer,
floatvalue float,
metric_id integer,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.position
(
id SERIAL,
reference character varying(255),
label character varying(255),
latitude float,
longitude float,
metric_id integer,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS public.action
(
id SERIAL,
status character varying(255),
position_id integer,
machine_id integer,
description character varying(255),
priority integer,
driver_dbuser_id integer,
actor_dbuser_id integer,
creationdate date,
planneddate date,
closingdate date,
comment character varying(1000),
verified boolean,
PRIMARY KEY (id)
);
ALTER TABLE public.axis
ADD FOREIGN KEY (entity_id)
REFERENCES public.entity (id)
NOT VALID;
ALTER TABLE public.employee
ADD FOREIGN KEY (dbuser_id)
REFERENCES public.dbuser (id)
NOT VALID;
ALTER TABLE public.project
ADD FOREIGN KEY (entity_id)
REFERENCES public.entity (id)
NOT VALID;
END;