2023-02-14 23:29:40 -06:00
|
|
|
export class ad1676438468213 {
|
|
|
|
name = 'ad1676438468213';
|
|
|
|
async up(queryRunner) {
|
2023-02-16 07:08:45 -06:00
|
|
|
await queryRunner.query(`ALTER TABLE "ad" ADD "startsAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now()`);
|
2023-02-14 23:29:40 -06:00
|
|
|
}
|
|
|
|
async down(queryRunner) {
|
2023-02-22 16:52:01 -06:00
|
|
|
await queryRunner.query(`ALTER TABLE "ad" DROP COLUMN "startsAt"`);
|
2023-02-14 23:29:40 -06:00
|
|
|
}
|
|
|
|
}
|