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