1
0
Fork 1
mirror of https://example.com synced 2024-11-23 20:36:39 +09:00
firefish/packages/backend/migration/1683682889948-PreventAiLearning.js

16 lines
366 B
JavaScript
Raw Normal View History

2023-05-12 11:02:51 +09:00
export class PreventAiLearning1683682889948 {
2023-05-13 12:11:41 +09:00
name = "PreventAiLearning1683682889948";
2023-05-13 12:11:41 +09:00
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "user_profile" ADD "preventAiLearning" boolean NOT NULL DEFAULT true`,
);
}
2023-05-13 12:11:41 +09:00
async down(queryRunner) {
await queryRunner.query(
`ALTER TABLE "user_profile" DROP COLUMN "preventAiLearning"`,
);
}
}