firefish/packages/backend/migration/1683682889948-PreventAiLearning.js

16 lines
366 B
JavaScript
Raw Permalink Normal View History

2023-07-20 04:17:05 +09:00
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"`,
);
}
}