mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-11 08:01:03 -07:00
14 lines
501 B
TypeScript
14 lines
501 B
TypeScript
import { MigrationInterface, QueryRunner } from "typeorm";
|
|
export class instanceIconUrl1595676934834 implements MigrationInterface {
|
|
constructor() {
|
|
this.name = "instanceIconUrl1595676934834";
|
|
}
|
|
async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "instance" ADD "iconUrl" character varying(256) DEFAULT null`,
|
|
);
|
|
}
|
|
async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "iconUrl"`);
|
|
}
|
|
}
|