mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-10-31 23:31:48 +09:00
15 lines
529 B
JavaScript
15 lines
529 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
class instanceFavicon1603781553011 {
|
||
|
constructor() {
|
||
|
this.name = 'instanceFavicon1603781553011';
|
||
|
}
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "instance" ADD "faviconUrl" character varying(256) DEFAULT null`);
|
||
|
}
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "faviconUrl"`);
|
||
|
}
|
||
|
}
|
||
|
exports.instanceFavicon1603781553011 = instanceFavicon1603781553011;
|