mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 06:33:09 +02:00
14 lines
520 B
TypeScript
14 lines
520 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class instanceThemeColor1603776877564 implements MigrationInterface {
|
|
name = 'instanceThemeColor1603776877564'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "instance" ADD "themeColor" character varying(64) DEFAULT null`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "themeColor"`);
|
|
}
|
|
|
|
}
|