mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-11-22 17:38:26 +01:00
f4838e50b4
* enhance(antenna): Botの投稿を除外できるように (MisskeyIO#545)
(cherry picked from commit a95ce067c6
)
* Update Changelog
* remove translations
* spdx
---------
Co-authored-by: まっちゃとーにゅ <17376330+u1-liquid@users.noreply.github.com>
16 lines
461 B
JavaScript
16 lines
461 B
JavaScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
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"`);
|
|
}
|
|
}
|