remove tenant from UserContactInfo UserCredential

This commit is contained in:
Efstratios Giannopoulos 2024-04-03 11:36:31 +03:00
parent a5e69fe777
commit b3db6f1085
3 changed files with 0 additions and 30 deletions

View File

@ -12,14 +12,8 @@ CREATE TABLE IF NOT EXISTS public."ntf_UserCredential"
"created_at" timestamp without time zone NOT NULL,
"updated_at" timestamp without time zone NOT NULL,
"is_active" smallint NOT NULL DEFAULT 1,
"tenant" uuid,
"data" character varying COLLATE pg_catalog."default",
CONSTRAINT "ntf_UserCredential_pkey" PRIMARY KEY (id),
CONSTRAINT "ntf_UserCredential_tenant_fkey" FOREIGN KEY ("tenant")
REFERENCES public."ntf_Tenant" (id) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
NOT VALID,
CONSTRAINT "ntf_UserCredential_user_fkey" FOREIGN KEY ("user")
REFERENCES public."ntf_User" (id) MATCH SIMPLE
ON UPDATE NO ACTION

View File

@ -157,24 +157,6 @@ BEGIN
ON DELETE NO ACTION
NOT VALID;
ALTER TABLE public."UserContactInfo"
ADD COLUMN tenant uuid;
ALTER TABLE public."UserContactInfo"
ADD CONSTRAINT "UserContactInfo_tenant_fkey" FOREIGN KEY (tenant)
REFERENCES public."Tenant" (id)
ON UPDATE NO ACTION
ON DELETE NO ACTION
NOT VALID;
ALTER TABLE public."UserCredential"
ADD COLUMN tenant uuid;
ALTER TABLE public."UserCredential"
ADD CONSTRAINT "UserCredential_tenant_fkey" FOREIGN KEY (tenant)
REFERENCES public."Tenant" (id)
ON UPDATE NO ACTION
ON DELETE NO ACTION
NOT VALID;
ALTER TABLE public."UserDescriptionTemplate"
ADD COLUMN tenant uuid;
ALTER TABLE public."UserDescriptionTemplate"

View File

@ -12,14 +12,8 @@ CREATE TABLE IF NOT EXISTS public."ant_UserCredential"
"created_at" timestamp without time zone NOT NULL,
"updated_at" timestamp without time zone NOT NULL,
"is_active" smallint NOT NULL DEFAULT 1,
"tenant" uuid,
"data" character varying COLLATE pg_catalog."default",
CONSTRAINT "ant_UserCredential_pkey" PRIMARY KEY (id),
CONSTRAINT "ant_UserCredential_tenant_fkey" FOREIGN KEY ("tenant")
REFERENCES public."ant_Tenant" (id) MATCH SIMPLE
ON UPDATE NO ACTION
ON DELETE NO ACTION
NOT VALID,
CONSTRAINT "ant_UserCredential_user_fkey" FOREIGN KEY ("user")
REFERENCES public."ant_User" (id) MATCH SIMPLE
ON UPDATE NO ACTION