mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 17:29:05 +01:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
export class showAds1657759324648 {
|
|
name = 'showAds1657759324648'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "showAds" boolean NOT NULL DEFAULT false`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP "showAds"`);
|
|
}
|
|
}
|