Merge branch 'develop' into feat-12997

This commit is contained in:
かっこかり 2024-10-21 17:43:18 +09:00 committed by GitHub
commit 6ea1cf4eee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
51 changed files with 439 additions and 199 deletions

View file

@ -0,0 +1,16 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class SigninRequiredForShowContents1729333924409 {
name = 'SigninRequiredForShowContents1729333924409'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "user" ADD "requireSigninToViewContents" boolean NOT NULL DEFAULT false`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "requireSigninToViewContents"`);
}
}