requested fixes!

This commit is contained in:
piuvas 2024-09-22 17:32:20 -03:00
parent 0f2e30f5ba
commit 4ee2973303
No known key found for this signature in database
GPG key ID: 82743F52454C621D
9 changed files with 21 additions and 15 deletions

View file

@ -0,0 +1,16 @@
/*
* SPDX-FileCopyrightText: piuvas and other Sharkey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class SidebarLogo1727027985575 {
name = 'SidebarLogo1727027985575';
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "sidebarLogoUrl" character varying(1024)`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "sidebarLogoUrl"`);
}
}