parent
037837b551
commit
0e4a111f81
1714 changed files with 20803 additions and 11751 deletions
16
packages/backend/migration/1605965516823-instance-images.js
Normal file
16
packages/backend/migration/1605965516823-instance-images.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
class instanceImages1605965516823 {
|
||||
constructor() {
|
||||
this.name = 'instanceImages1605965516823';
|
||||
}
|
||||
async up(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "backgroundImageUrl" character varying(512)`);
|
||||
await queryRunner.query(`ALTER TABLE "meta" ADD "logoImageUrl" character varying(512)`);
|
||||
}
|
||||
async down(queryRunner) {
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "logoImageUrl"`);
|
||||
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "backgroundImageUrl"`);
|
||||
}
|
||||
}
|
||||
exports.instanceImages1605965516823 = instanceImages1605965516823;
|
Loading…
Add table
Add a link
Reference in a new issue