mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-19 17:18:27 +09:00
12 lines
359 B
JavaScript
12 lines
359 B
JavaScript
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`);
|
|
}
|
|
}
|