mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
11 lines
376 B
JavaScript
11 lines
376 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"`);
|
|
}
|
|
}
|