From cd8545590e31e0cdc7c2a67fefceeae74b1c3391 Mon Sep 17 00:00:00 2001 From: sgiannopoulos Date: Wed, 24 Apr 2024 14:06:10 +0300 Subject: [PATCH] sql script updates --- .../updates/00.01.058_Add_ant_UserContactInfo_table.sql | 2 +- ....063_TenantConfiguration_add_tenant_configuration_table.sql} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename dmp-db-scema/updates/{TenantConfiguration_add_tenant_configuration_table.sql => 00.01.063_TenantConfiguration_add_tenant_configuration_table.sql} (100%) diff --git a/dmp-db-scema/updates/00.01.058_Add_ant_UserContactInfo_table.sql b/dmp-db-scema/updates/00.01.058_Add_ant_UserContactInfo_table.sql index ec304589a..688ca8246 100644 --- a/dmp-db-scema/updates/00.01.058_Add_ant_UserContactInfo_table.sql +++ b/dmp-db-scema/updates/00.01.058_Add_ant_UserContactInfo_table.sql @@ -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 diff --git a/dmp-db-scema/updates/TenantConfiguration_add_tenant_configuration_table.sql b/dmp-db-scema/updates/00.01.063_TenantConfiguration_add_tenant_configuration_table.sql similarity index 100% rename from dmp-db-scema/updates/TenantConfiguration_add_tenant_configuration_table.sql rename to dmp-db-scema/updates/00.01.063_TenantConfiguration_add_tenant_configuration_table.sql