1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-01 15:45:58 +09:00
cherrypick/packages/backend/migration/1676438468213-ad3.js

10 lines
287 B
JavaScript
Raw Normal View History

export class ad1676438468213 {
name = 'ad1676438468213';
async up(queryRunner) {
2023-02-15 14:31:59 +09:00
await queryRunner.query(`ALTER TABLE "ad" ADD "startsAt" TIMESTAMP WITH TIME ZONE NOT NULL`);
}
async down(queryRunner) {
2023-02-15 14:31:59 +09:00
await queryRunner.query(`ALTER TABLE "role" DROP COLUMN "startsAt"`);
}
}