Skip to content

Commit

Permalink
Merge pull request #1938 from bcgov/hotfix/ALCS-2335
Browse files Browse the repository at this point in the history
Fix selected ETL missed review deletions
  • Loading branch information
trslater authored Oct 28, 2024
2 parents 2219465 + 0504330 commit b53a438
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { MigrationInterface, QueryRunner } from 'typeorm';

export class FixEtlMissedDeletingLfgnReviews1730144741773
implements MigrationInterface
{
public async up(queryRunner: QueryRunner): Promise<void> {
queryRunner.query(`
delete from alcs.application_submission_review asr
where asr.application_file_number in ('61301', '67497')
`);
}

public async down(queryRunner: QueryRunner): Promise<void> {}
}

0 comments on commit b53a438

Please sign in to comment.