mirror of
https://example.com
synced 2024-11-23 07:26:40 +09:00
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
|
export class instanceFavicon1603781553011 {
|
||
|
constructor() {
|
||
|
this.name = "instanceFavicon1603781553011";
|
||
|
}
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(
|
||
|
`ALTER TABLE "instance" ADD "faviconUrl" character varying(256) DEFAULT null`,
|
||
|
);
|
||
|
}
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN "faviconUrl"`);
|
||
|
}
|
||
|
}
|