37 lines
1.0 KiB
SQL
37 lines
1.0 KiB
SQL
-- Create "InstallationLink" table
|
|
CREATE TABLE "public"."InstallationLink" (
|
|
"Id" bigserial NOT NULL,
|
|
"CreatedAt" timestamptz NULL,
|
|
"UpdatedAt" timestamptz NULL,
|
|
"DeletedAt" timestamptz NULL,
|
|
"Simx_Id" bigint NULL,
|
|
"Simgos_Id" bigint NULL,
|
|
PRIMARY KEY ("Id"),
|
|
CONSTRAINT "uni_InstallationLink_Simgos_Id" UNIQUE ("Simgos_Id"),
|
|
CONSTRAINT "uni_InstallationLink_Simx_Id" UNIQUE ("Simx_Id")
|
|
);
|
|
-- Create "InstallationSimgosLog" table
|
|
CREATE TABLE "public"."InstallationSimgosLog" (
|
|
"Id" bigserial NOT NULL,
|
|
"CreatedAt" timestamptz NULL,
|
|
"UpdatedAt" timestamptz NULL,
|
|
"DeletedAt" timestamptz NULL,
|
|
"Value" text NULL,
|
|
"Date" timestamptz NULL,
|
|
"Status" text NULL,
|
|
"ErrMessage" text NULL,
|
|
PRIMARY KEY ("Id")
|
|
);
|
|
-- Create "InstallationSimxLog" table
|
|
CREATE TABLE "public"."InstallationSimxLog" (
|
|
"Id" bigserial NOT NULL,
|
|
"CreatedAt" timestamptz NULL,
|
|
"UpdatedAt" timestamptz NULL,
|
|
"DeletedAt" timestamptz NULL,
|
|
"Value" text NULL,
|
|
"Date" timestamptz NULL,
|
|
"Status" text NULL,
|
|
"ErrMessage" text NULL,
|
|
PRIMARY KEY ("Id")
|
|
);
|