1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-02-01 01:30:16 -06:00
paricafe/packages/backend/migration/1644395759931-instance-theme-color.js

14 lines
343 B
JavaScript
Raw Normal View History

2022-02-28 09:07:03 -06:00
export 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"`);
}
}