Files
FrozenFriendsYume/packages/backend/built/migration/1683682889948-PreventAiLearning.js
T
2026-07-26 18:25:37 +09:00

10 lines
375 B
JavaScript

export class PreventAiLearning1683682889948 {
name = "PreventAiLearning1683682889948";
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "user_profile" ADD "preventAiLearning" boolean NOT NULL DEFAULT true`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "preventAiLearning"`);
}
}