Migration: Fixed formatting

This commit is contained in:
Igor Scheller 2019-12-08 01:56:51 +01:00
parent d6cb9c6258
commit ad6b48bd20
1 changed files with 8 additions and 4 deletions

View File

@ -70,7 +70,8 @@ class CreateQuestionsTable extends Migration
*/ */
private function createNewQuestionsTable(): void private function createNewQuestionsTable(): void
{ {
$this->schema->create('questions', $this->schema->create(
'questions',
function (Blueprint $table) { function (Blueprint $table) {
$table->increments('id'); $table->increments('id');
$this->referencesUser($table, false); $this->referencesUser($table, false);
@ -79,7 +80,8 @@ class CreateQuestionsTable extends Migration
->nullable(); ->nullable();
$this->references($table, 'users', 'answerer_id') $this->references($table, 'users', 'answerer_id')
->nullable(); ->nullable();
}); }
);
} }
/** /**
@ -109,7 +111,8 @@ class CreateQuestionsTable extends Migration
*/ */
private function createPreviousQuestionsTable(): void private function createPreviousQuestionsTable(): void
{ {
$this->schema->create('Questions', $this->schema->create(
'Questions',
function (Blueprint $table) { function (Blueprint $table) {
$table->increments('QID'); $table->increments('QID');
$this->references($table, 'users', 'UID'); $this->references($table, 'users', 'UID');
@ -118,7 +121,8 @@ class CreateQuestionsTable extends Migration
->nullable(); ->nullable();
$table->text('Answer') $table->text('Answer')
->nullable(); ->nullable();
}); }
);
} }
/** /**