2023-07-26 22:31:52 -07:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-14 21:29:40 -08:00
|
|
|
export class ad1676438468213 {
|
|
|
|
name = 'ad1676438468213';
|
|
|
|
async up(queryRunner) {
|
2023-02-16 05:08:45 -08:00
|
|
|
await queryRunner.query(`ALTER TABLE "ad" ADD "startsAt" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now()`);
|
2023-02-14 21:29:40 -08:00
|
|
|
}
|
|
|
|
async down(queryRunner) {
|
2023-02-22 14:52:01 -08:00
|
|
|
await queryRunner.query(`ALTER TABLE "ad" DROP COLUMN "startsAt"`);
|
2023-02-14 21:29:40 -08:00
|
|
|
}
|
|
|
|
}
|