f1ef85b636
* feat(server): Fetch icon url of an instance Resolve #6589 * chore: Rename the function
14 lines
509 B
TypeScript
14 lines
509 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class instanceIconUrl1595676934834 implements MigrationInterface {
|
|
name = 'instanceIconUrl1595676934834'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "instance" ADD "iconUrl" character varying(256) DEFAULT null`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "iconUrl"`);
|
|
}
|
|
|
|
}
|