37 lines
1011 B
SQL
37 lines
1011 B
SQL
-- Create "SoapiLink" table
|
|
CREATE TABLE "public"."SoapiLink" (
|
|
"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_SoapiLink_Simgos_Id" UNIQUE ("Simgos_Id"),
|
|
CONSTRAINT "uni_SoapiLink_Simx_Id" UNIQUE ("Simx_Id")
|
|
);
|
|
-- Create "SoapiSimgosLog" table
|
|
CREATE TABLE "public"."SoapiSimgosLog" (
|
|
"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 "SoapiSimxLog" table
|
|
CREATE TABLE "public"."SoapiSimxLog" (
|
|
"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")
|
|
);
|