mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 05:23:09 +02:00
85809a240e
* fix(backend): "誰でも新規登録できるようにする"の初期値をOFFにする * fix CHANGELOG.md * fix
16 lines
510 B
JavaScript
16 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;`);
|
|
}
|
|
}
|