mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 04:43:08 +02:00
15 lines
524 B
JavaScript
15 lines
524 B
JavaScript
|
"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;
|