From 8f77b67975dae2d43613b2b72b568031b461a1d6 Mon Sep 17 00:00:00 2001 From: yukineko <27853966+hideki0403@users.noreply.github.com> Date: Fri, 3 Nov 2023 14:27:27 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"add:=20=E3=82=B3=E3=83=A1=E3=83=B3?= =?UTF-8?q?=E3=83=88=E3=82=92=E8=BF=BD=E5=8A=A0"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 7ee301c3eed4ded295490a6614650a3720317772. --- .../migration/1698931321665-add-comment.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 packages/backend/migration/1698931321665-add-comment.js 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`); - } -}