mirror of
https://example.com
synced 2024-11-23 05:46:39 +09:00
17 lines
562 B
JavaScript
17 lines
562 B
JavaScript
export class EmojiModeratorRevert9999999999999 {
|
|
name = "EmojiModeratorRevert9999999999999";
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`CREATE TYPE "public"."user_emojimodperm_enum" AS ENUM('none', 'add', 'mod', 'full')`,
|
|
);
|
|
await queryRunner.query(
|
|
`ALTER TABLE "user" ADD "emojiModPerm" "public"."user_emojimodperm_enum" NOT NULL DEFAULT 'none'`,
|
|
);
|
|
}
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "emojiModPerm"`);
|
|
await queryRunner.query(`DROP TYPE "public"."user_emojimodperm_enum"`);
|
|
}
|
|
}
|