misskey/packages/backend/migration/1679651580149-cleanup.js

16 lines
470 B
JavaScript

// SPDX-FileCopyrightText: syuilo and other misskey contributors
//
// SPDX-License-Identifier: AGPL-3.0-only
export class cleanup1679651580149 {
name = 'cleanup1679651580149'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "useStarForReactionFallback"`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "useStarForReactionFallback" boolean NOT NULL DEFAULT false`);
}
}