Skip to content

Instantly share code, notes, and snippets.

@broguinn
Created May 14, 2026 18:03
Show Gist options
  • Select an option

  • Save broguinn/7fe87f77d71117e3099168d5f35ecded to your computer and use it in GitHub Desktop.

Select an option

Save broguinn/7fe87f77d71117e3099168d5f35ecded to your computer and use it in GitHub Desktop.
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