From dc55f0fee86f264729004adde74190d04a5d56b1 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Mon, 19 Aug 2024 14:52:05 +0000 Subject: [PATCH] Restyled by clang-format --- .../migration/1724078037441-vacationMode.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/packages/backend/migration/1724078037441-vacationMode.js b/packages/backend/migration/1724078037441-vacationMode.js index 36a78b452..8690d0bf7 100644 --- a/packages/backend/migration/1724078037441-vacationMode.js +++ b/packages/backend/migration/1724078037441-vacationMode.js @@ -1,11 +1,12 @@ export class vacationMode1724078037441 { - name = 'vacationMode1724078037441' + name = 'vacationMode1724078037441' - async up(queryRunner) { - await queryRunner.query(`ALTER TABLE "user" ADD "isVacation" boolean NOT NULL DEFAULT false`); - } + async up(queryRunner) { + await queryRunner.query( + `ALTER TABLE "user" ADD "isVacation" boolean NOT NULL DEFAULT false`); + } - async down(queryRunner) { - await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "isVacation"`); - } + async down(queryRunner) { + await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "isVacation"`); + } }