From 18197447cb9bd058210a6bce1dbb5ca1fa6c5512 Mon Sep 17 00:00:00 2001 From: Carlos Date: Thu, 14 Sep 2023 14:16:05 -0500 Subject: [PATCH] fix migration file for eligible networks --- migration/1694295208252-AddEligibleNetworksToQfRoundEntity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migration/1694295208252-AddEligibleNetworksToQfRoundEntity.ts b/migration/1694295208252-AddEligibleNetworksToQfRoundEntity.ts index 641648841..e7c2e85f4 100644 --- a/migration/1694295208252-AddEligibleNetworksToQfRoundEntity.ts +++ b/migration/1694295208252-AddEligibleNetworksToQfRoundEntity.ts @@ -6,7 +6,7 @@ export class AddEligibleNetworksToQfRoundEntity1694295208252 public async up(queryRunner: QueryRunner): Promise { await queryRunner.query(` ALTER TABLE public.qf_round - ADD COLUMN IF NOT EXIST "eligibleNetworks" integer array DEFAULT ARRAY[]::integer[] + ADD COLUMN IF NOT EXISTS "eligibleNetworks" integer array DEFAULT ARRAY[]::integer[] `); }