You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
506 B
JavaScript

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