Skip to content

Commit

Permalink
Merge pull request #1940 from bcgov/main
Browse files Browse the repository at this point in the history
Backport
  • Loading branch information
trslater authored Nov 13, 2024
2 parents 609737d + b53a438 commit f366f40
Show file tree
Hide file tree
Showing 7 changed files with 661 additions and 1,739 deletions.
452 changes: 276 additions & 176 deletions alcs-frontend/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion alcs-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
},
"devDependencies": {
"@angular-builders/jest": "^17.0.3",
"@angular-devkit/build-angular": "^17.3.3",
"@angular-devkit/build-angular": "^17.3.10",
"@angular-eslint/builder": "^17.3.0",
"@angular-eslint/eslint-plugin": "^17.3.0",
"@angular-eslint/eslint-plugin-template": "^17.3.0",
Expand Down
458 changes: 279 additions & 179 deletions portal-frontend/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion portal-frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"devDependencies": {
"@angular-builders/jest": "^17.0.3",
"@angular-devkit/build-angular": "^17.3.3",
"@angular-devkit/build-angular": "^17.3.10",
"@angular/cli": "~17.3.3",
"@angular/compiler-cli": "^17.3.3",
"@golevelup/ts-jest": "^0.4.0",
Expand Down
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> {}
}
Loading

0 comments on commit f366f40

Please sign in to comment.