mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-06 03:23:09 +02: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;`);
|
||
|
}
|
||
|
}
|