mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 08:26:43 -06: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"`);
|
|
}
|
|
}
|