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