mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-12-12 05:38:55 +09:00
311c2172d7
This reverts commit 9b5aeb76d8
.
17 lines
461 B
JavaScript
17 lines
461 B
JavaScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export class addPropsForCustomEmoji1678945242650 {
|
|
name = 'addPropsForCustomEmoji1678945242650'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "emoji" ADD "license" character varying(1024)`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "emoji" DROP COLUMN "license"`);
|
|
}
|
|
}
|