diff --git a/packages/backend/migration/1698931321665-add-comment.js b/packages/backend/migration/1698931321665-add-comment.js deleted file mode 100644 index 422de166e1..0000000000 --- a/packages/backend/migration/1698931321665-add-comment.js +++ /dev/null @@ -1,16 +0,0 @@ -/* - * SPDX-FileCopyrightText: syuilo and other misskey contributors - * SPDX-License-Identifier: AGPL-3.0-only - */ - -export class AddComment1698931321665 { - name = 'AddComment1698931321665' - - async up(queryRunner) { - await queryRunner.query(`COMMENT ON COLUMN "meta"."emailVerificationExpiresIn" IS 'The expiration time of email verification (unit: minute)'`); - } - - async down(queryRunner) { - await queryRunner.query(`COMMENT ON COLUMN "meta"."emailVerificationExpiresIn" IS NULL`); - } -}