sql script updates

This commit is contained in:
Efstratios Giannopoulos 2024-04-24 14:06:10 +03:00
parent a3350b2f2c
commit cd8545590e
2 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ CREATE TABLE IF NOT EXISTS public."ant_UserContactInfo"
"value" character varying(512) COLLATE pg_catalog."default" NOT NULL,
"created_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,
CONSTRAINT "ant_UserContactInfo_pkey" PRIMARY KEY (id),
CONSTRAINT "ant_UserContactInfo_user_fkey" FOREIGN KEY ("user")
REFERENCES public."ant_User" (id) MATCH SIMPLE