Skip to content

Commit

Permalink
2024.10.0-resonite-love.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rassi0429 committed Oct 14, 2024
1 parent af0ee73 commit e28c6ca
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "2024.10.0-resonite-love.2",
"version": "2024.10.0-resonite-love.3",
"codename": "nasubi",
"repository": {
"type": "git",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/

export class NirilaAllowedUnfamiliarRemoteUserIds1728085812129 {
name = 'NirilaAllowedUnfamiliarRemoteUserIds1728085812130'

async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "nirilaBlockMentionsFromUnfamiliarRemoteUsers" boolean NOT NULL DEFAULT false`);
}

async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "nirilaBlockMentionsFromUnfamiliarRemoteUsers"`);
}
}

0 comments on commit e28c6ca

Please sign in to comment.