mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 16:57:14 +01:00
13 lines
416 B
JavaScript
13 lines
416 B
JavaScript
const { MigrationInterface, QueryRunner } = require("typeorm");
|
|
|
|
module.exports = class instanceThemeColor1644395759931 {
|
|
name = 'instanceThemeColor1644395759931'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" ADD "themeColor" character varying(512)`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "themeColor"`);
|
|
}
|
|
}
|