mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 12:39:59 +01:00
d2dba136bf
Co-authored-by: GitHub <syuilo>
12 lines
374 B
JavaScript
12 lines
374 B
JavaScript
export class PreventAiLarning1683682889948 {
|
|
name = 'PreventAiLarning1683682889948'
|
|
|
|
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"`);
|
|
}
|
|
}
|