-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #977 from parlemonde/VIL-144
Vil 144
- Loading branch information
Showing
79 changed files
with
4,395 additions
and
1,141 deletions.
There are no files selected for viewing
Binary file renamed
BIN
+15.5 MB
...n32-x64-msvc-npm-12.3.4-54d10742b1-10.zip → ...darwin-arm64-npm-12.3.4-3c587df0e7-10.zip
Binary file not shown.
Binary file renamed
BIN
+24.8 MB
...32-x64-msvc-npm-1.2.205-ff0a0ff4f5-10.zip → ...arwin-arm64-npm-1.2.205-7711ca8be0-10.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { MigrationInterface, QueryRunner } from 'typeorm'; | ||
|
||
export class AlterGameResponseTable1710427662589 implements MigrationInterface { | ||
public async up(queryRunner: QueryRunner): Promise<void> { | ||
await queryRunner.query(`ALTER TABLE game_response DROP FOREIGN KEY FK_3a0c737a217bbd6bbd268203fb8`); | ||
await queryRunner.query(`ALTER TABLE game_response DROP COLUMN gameId`); | ||
await queryRunner.query(`ALTER TABLE game_response ADD COLUMN gameId INT`); | ||
} | ||
|
||
public async down(queryRunner: QueryRunner): Promise<void> { | ||
await queryRunner.query(`ALTER TABLE game_response DROP COLUMN gameId`); | ||
await queryRunner.query(`ALTER TABLE game_response ADD COLUMN gameId INT`); | ||
await queryRunner.query(`ALTER TABLE game_response ADD CONSTRAINT FK_3a0c737a217bbd6bbd268203fb8 FOREIGN KEY (gameId) REFERENCES game(id)`); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.