remove tenant from UserContactInfo UserCredential
This commit is contained in:
parent
a5e69fe777
commit
b3db6f1085
|
@ -12,14 +12,8 @@ CREATE TABLE IF NOT EXISTS public."ntf_UserCredential"
|
||||||
"created_at" timestamp without time zone NOT NULL,
|
"created_at" timestamp without time zone NOT NULL,
|
||||||
"updated_at" timestamp without time zone NOT NULL,
|
"updated_at" timestamp without time zone NOT NULL,
|
||||||
"is_active" smallint NOT NULL DEFAULT 1,
|
"is_active" smallint NOT NULL DEFAULT 1,
|
||||||
"tenant" uuid,
|
|
||||||
"data" character varying COLLATE pg_catalog."default",
|
"data" character varying COLLATE pg_catalog."default",
|
||||||
CONSTRAINT "ntf_UserCredential_pkey" PRIMARY KEY (id),
|
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")
|
CONSTRAINT "ntf_UserCredential_user_fkey" FOREIGN KEY ("user")
|
||||||
REFERENCES public."ntf_User" (id) MATCH SIMPLE
|
REFERENCES public."ntf_User" (id) MATCH SIMPLE
|
||||||
ON UPDATE NO ACTION
|
ON UPDATE NO ACTION
|
||||||
|
|
|
@ -157,24 +157,6 @@ BEGIN
|
||||||
ON DELETE NO ACTION
|
ON DELETE NO ACTION
|
||||||
NOT VALID;
|
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"
|
ALTER TABLE public."UserDescriptionTemplate"
|
||||||
ADD COLUMN tenant uuid;
|
ADD COLUMN tenant uuid;
|
||||||
ALTER TABLE public."UserDescriptionTemplate"
|
ALTER TABLE public."UserDescriptionTemplate"
|
||||||
|
|
|
@ -12,14 +12,8 @@ CREATE TABLE IF NOT EXISTS public."ant_UserCredential"
|
||||||
"created_at" timestamp without time zone NOT NULL,
|
"created_at" timestamp without time zone NOT NULL,
|
||||||
"updated_at" timestamp without time zone NOT NULL,
|
"updated_at" timestamp without time zone NOT NULL,
|
||||||
"is_active" smallint NOT NULL DEFAULT 1,
|
"is_active" smallint NOT NULL DEFAULT 1,
|
||||||
"tenant" uuid,
|
|
||||||
"data" character varying COLLATE pg_catalog."default",
|
"data" character varying COLLATE pg_catalog."default",
|
||||||
CONSTRAINT "ant_UserCredential_pkey" PRIMARY KEY (id),
|
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")
|
CONSTRAINT "ant_UserCredential_user_fkey" FOREIGN KEY ("user")
|
||||||
REFERENCES public."ant_User" (id) MATCH SIMPLE
|
REFERENCES public."ant_User" (id) MATCH SIMPLE
|
||||||
ON UPDATE NO ACTION
|
ON UPDATE NO ACTION
|
||||||
|
|
Loading…
Reference in New Issue