enhance(backend): use ❤️ for reaction fallback

This commit is contained in:
syuilo 2023-03-24 18:55:31 +09:00
parent 4edc7d8956
commit 09a846a45c
7 changed files with 16 additions and 20 deletions

View file

@ -0,0 +1,11 @@
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`);
}
}