Merge branch 'develop' into schedule-note

This commit is contained in:
かっこかり 2023-11-18 00:21:56 +09:00 committed by GitHub
commit 3413b394e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 1011 additions and 834 deletions

View file

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