enhance(antenna): Botの投稿を除外できるように (MisskeyIO#545)

This commit is contained in:
まっちゃとーにゅ 2024-03-20 17:28:19 +09:00 committed by GitHub
parent c45edf2564
commit a95ce067c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 50 additions and 2 deletions

View file

@ -0,0 +1,11 @@
export class AntennaExcludeBots1710919614510 {
name = 'AntennaExcludeBots1710919614510'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "antenna" ADD "excludeBots" boolean NOT NULL DEFAULT false`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "antenna" DROP COLUMN "excludeBots"`);
}
}