mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2025-01-08 22:52:52 +09:00
13 lines
543 B
JavaScript
13 lines
543 B
JavaScript
|
export class InstanceAccountDomainCleanup1695749386779 {
|
||
|
name = "InstanceAccountDomainCleanup1695749386779";
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN IF EXISTS "accountDomain"`);
|
||
|
await queryRunner.query(`ALTER TABLE "instance" DROP COLUMN IF EXISTS "account_domain"`);
|
||
|
}
|
||
|
|
||
|
async down(queryRunner) {
|
||
|
// This migration is only here to ensure consistent state if upgrading from certain dev branch commits, skipping the final TypeORM migration.
|
||
|
// As such, there is no need to revert it.
|
||
|
}
|
||
|
}
|