mirror of
https://git.boykissers.com/pawkey/pawkey-sk.git
synced 2025-12-20 04:04:16 +00:00
11 lines
363 B
JavaScript
11 lines
363 B
JavaScript
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"`);
|
|
}
|
|
} |