2022-02-28 15:07:03 +00:00
|
|
|
export class instanceThemeColor1603776877564 {
|
2023-04-07 01:56:46 +00:00
|
|
|
constructor() {
|
|
|
|
this.name = "instanceThemeColor1603776877564";
|
|
|
|
}
|
|
|
|
async up(queryRunner) {
|
|
|
|
await queryRunner.query(
|
|
|
|
`ALTER TABLE "instance" ADD "themeColor" character varying(64) DEFAULT null`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "themeColor"`);
|
|
|
|
}
|
2021-11-11 17:02:25 +00:00
|
|
|
}
|