mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 05:03:08 +02: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"`);
|
|
}
|
|
}
|