1
0
Fork 1
mirror of https://example.com synced 2024-11-23 01:56:40 +09:00
firefish/packages/backend/migration/1683682889948-PreventAiLearning.js
2023-07-20 04:17:05 +09:00

15 lines
366 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"`,
);
}
}