From c66fbc2bf62dc78bafe4957de40b1cb4103efed8 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 13 Jul 2022 23:54:22 -0700 Subject: [PATCH] spacing --- packages/backend/migration/1657759324648-show-ads.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/backend/migration/1657759324648-show-ads.js b/packages/backend/migration/1657759324648-show-ads.js index 2e00dfd68..bbe794e7b 100644 --- a/packages/backend/migration/1657759324648-show-ads.js +++ b/packages/backend/migration/1657759324648-show-ads.js @@ -1,11 +1,11 @@ export class showAds1657759324648 { name = 'showAds1657759324648' - async up(queryRunner) { - await queryRunner.query(`ALTER TABLE "user_profile" ADD "showAds" boolean NOT NULL DEFAULT false`); - } + 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"`); - } + async down(queryRunner) { + await queryRunner.query(`ALTER TABLE "user_profile" DROP "showAds"`); + } }