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