diff --git a/db/migration/1736188395813-UpdateHousekeepingSuggestedReviews.ts b/db/migration/1736188395813-UpdateHousekeepingSuggestedReviews.ts new file mode 100644 index 0000000000..41bfc29552 --- /dev/null +++ b/db/migration/1736188395813-UpdateHousekeepingSuggestedReviews.ts @@ -0,0 +1,18 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class HousekeepingSuggestedReviews1736188395813 implements MigrationInterface { + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query(`-- sql + ALTER TABLE housekeeping_suggested_reviews + MODIFY COLUMN objectId INTEGER NOT NULL; + `) + } + + public async down(): Promise {} + +} + + +// ALTER TABLE employees +