15 lines
667 B
SQL
15 lines
667 B
SQL
-- Create "Registrator" table
|
|
CREATE TABLE "public"."Registrator" (
|
|
"Id" bigserial NOT NULL,
|
|
"CreatedAt" timestamptz NULL,
|
|
"UpdatedAt" timestamptz NULL,
|
|
"DeletedAt" timestamptz NULL,
|
|
"Employee_Id" bigint NULL,
|
|
"Installation_Code" character varying(20) NULL,
|
|
PRIMARY KEY ("Id"),
|
|
CONSTRAINT "fk_Registrator_Employee" FOREIGN KEY ("Employee_Id") REFERENCES "public"."Employee" ("Id") ON UPDATE NO ACTION ON DELETE NO ACTION,
|
|
CONSTRAINT "fk_Registrator_Installation" FOREIGN KEY ("Installation_Code") REFERENCES "public"."Installation" ("Code") ON UPDATE NO ACTION ON DELETE NO ACTION
|
|
);
|
|
-- Drop "Registration" table
|
|
DROP TABLE "public"."Registration";
|