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[] `); }