Created
May 14, 2026 18:03
-
-
Save broguinn/7fe87f77d71117e3099168d5f35ecded to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| diff --git a/apps/api/src/migration/1777922782941-staging-prefix-uuid-defaults.ts b/apps/api/src/migration/1777922782941-staging-prefix-uuid-defaults.ts | |
| index 6b72ddfe6..0613eea3c 100644 | |
| --- a/apps/api/src/migration/1777922782941-staging-prefix-uuid-defaults.ts | |
| +++ b/apps/api/src/migration/1777922782941-staging-prefix-uuid-defaults.ts | |
| @@ -21,7 +21,7 @@ export class StagingPrefixUuidDefaults1777922782941 implements MigrationInterfac | |
| public async up(queryRunner: QueryRunner): Promise<void> { | |
| const [{ current_database }] = await queryRunner.query(`SELECT current_database()`); | |
| - const allowedDbs = new Set(['monolith_staging', 'semistow_dev']); | |
| + const allowedDbs = new Set(['monolith_staging']); | |
| if (!allowedDbs.has(current_database)) { | |
| console.log(`Skipping ${this.name}: current_database=${current_database}`); | |
| return; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment