1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-17 19:35:29 +02:00

Merge remote-tracking branch 'msky/develop' into copilot/add-user-mute-settings

This commit is contained in:
kakkokari-gtyih
2026-05-03 16:50:34 +09:00
237 changed files with 7027 additions and 8190 deletions

View File

@@ -0,0 +1,22 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class AddCategoryToAvatarDecorations1766652173085 {
name = 'AddCategoryToAvatarDecorations1766652173085';
/**
* @param {QueryRunner} queryRunner
*/
async up(queryRunner) {
await queryRunner.query('ALTER TABLE "avatar_decoration" ADD "category" character varying(128)');
}
/**
* @param {QueryRunner} queryRunner
*/
async down(queryRunner) {
await queryRunner.query('ALTER TABLE "avatar_decoration" DROP COLUMN "category"');
}
};