FoundKey/packages/backend/migration/1629288472000-fix-channel-userId.js

15 lines
526 B
JavaScript
Raw Normal View History

2021-11-11 17:02:25 +00:00
"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;