diff --git a/packages/backend/migration/1657759324648-show-ads.js b/packages/backend/migration/1657759324648-show-ads.js deleted file mode 100644 index bbe794e7b..000000000 --- a/packages/backend/migration/1657759324648-show-ads.js +++ /dev/null @@ -1,11 +0,0 @@ -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"`); - } -}