mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-12 04:57:30 -07:00
22417c94be
* Improve emoji-picker * remove unimplanted translation * カテゴリのサジェスト * use unique
13 lines
474 B
TypeScript
13 lines
474 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class CustomEmojiCategory1571220798684 implements MigrationInterface {
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<any> {
|
|
await queryRunner.query(`ALTER TABLE "emoji" ADD "category" character varying(128)`, undefined);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<any> {
|
|
await queryRunner.query(`ALTER TABLE "emoji" DROP COLUMN "category"`, undefined);
|
|
}
|
|
|
|
}
|