mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 01:05:21 +02:00
0e4a111f81
Resolve #7779
14 lines
529 B
JavaScript
14 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;
|