iceshrimp-legacy/packages/backend/migration/1629288472000-fix-channel-userId.js
syuilo 0e4a111f81 refactoring
Resolve #7779
2021-11-12 02:02:25 +09:00

15 lines
526 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class fixChannelUserId1629288472000 {
constructor() {
this.name = 'fixChannelUserId1629288472000';
}
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "channel" ALTER COLUMN "userId" DROP NOT NULL;`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "channel" ALTER COLUMN "userId" SET NOT NULL;`);
}
}
exports.fixChannelUserId1629288472000 = fixChannelUserId1629288472000;