hippofish/packages/backend/migration/1695937489995-enableAchievements.js

17 lines
478 B
JavaScript
Raw Normal View History

2024-06-15 12:36:55 +02:00
/*
* SPDX-FileCopyrightText: marie and other Sharkey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2023-09-29 00:57:38 +02:00
export class EnableAchievements1695937489995 {
name = 'EnableAchievements1695937489995'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "enableAchievements" boolean NOT NULL DEFAULT true`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableAchievements"`);
}
2024-06-15 12:36:55 +02:00
}