14
packages/backend/migration/1605408848373-clip-description.js
Normal file
14
packages/backend/migration/1605408848373-clip-description.js
Normal file
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
class clipDescription1605408848373 {
|
||||
constructor() {
|
||||
this.name = 'clipDescription1605408848373';
|
||||
}
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "clip" ADD "description" character varying(2048) DEFAULT null`);
|
||||
}
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "clip" DROP COLUMN "description"`);
|
||||
}
|
||||
}
|
||||
exports.clipDescription1605408848373 = clipDescription1605408848373;
|
Reference in New Issue
Block a user