mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 10:46:44 -06:00
17 lines
510 B
JavaScript
17 lines
510 B
JavaScript
|
/*
|
||
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
export class FixMetaDisableRegistration1706791962000 {
|
||
|
name = 'FixMetaDisableRegistration1706791962000'
|
||
|
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(`alter table meta alter column "disableRegistration" set default true;`);
|
||
|
}
|
||
|
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`alter table meta alter column "disableRegistration" set default false;`);
|
||
|
}
|
||
|
}
|