1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-11-27 22:38:30 +09:00
MisskeyIO/packages/backend/migration/1711946753142-role-badge-behavior.js

12 lines
345 B
JavaScript

export class RoleBadgeBehavior1711946753142 {
name = 'RoleBadgeBehavior1711946753142'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "role" ADD "badgeBehavior" character varying(256)`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "role" DROP COLUMN "badgeBehavior"`);
}
}