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"`);
|
|
}
|
|
}
|