From ad6b48bd20246093c50ef13514fd2733762ceed5 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Sun, 8 Dec 2019 01:56:51 +0100 Subject: Migration: Fixed formatting --- db/migrations/2019_11_29_000000_create_questions_table.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/db/migrations/2019_11_29_000000_create_questions_table.php b/db/migrations/2019_11_29_000000_create_questions_table.php index 1d73aaeb..7ea1ff07 100644 --- a/db/migrations/2019_11_29_000000_create_questions_table.php +++ b/db/migrations/2019_11_29_000000_create_questions_table.php @@ -70,7 +70,8 @@ class CreateQuestionsTable extends Migration */ private function createNewQuestionsTable(): void { - $this->schema->create('questions', + $this->schema->create( + 'questions', function (Blueprint $table) { $table->increments('id'); $this->referencesUser($table, false); @@ -79,7 +80,8 @@ class CreateQuestionsTable extends Migration ->nullable(); $this->references($table, 'users', 'answerer_id') ->nullable(); - }); + } + ); } /** @@ -109,7 +111,8 @@ class CreateQuestionsTable extends Migration */ private function createPreviousQuestionsTable(): void { - $this->schema->create('Questions', + $this->schema->create( + 'Questions', function (Blueprint $table) { $table->increments('QID'); $this->references($table, 'users', 'UID'); @@ -118,7 +121,8 @@ class CreateQuestionsTable extends Migration ->nullable(); $table->text('Answer') ->nullable(); - }); + } + ); } /** -- cgit v1.2.3