@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('path')->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('uuid')->unique()->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->bigInteger('session_id')->unsigned()->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('uuid')->unique(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('name')->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('sha1', 40)->index(); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('name')->index(); |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | public function migrateUp() |
| 13 | 13 | { |
| 14 | - $this->builder->table('tracker_sessions', function ($table) { |
|
| 14 | + $this->builder->table('tracker_sessions', function($table) { |
|
| 15 | 15 | $table->foreign('language_id') |
| 16 | 16 | ->references('id') |
| 17 | 17 | ->on('tracker_languages') |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | public function migrateDown() |
| 29 | 29 | { |
| 30 | - $this->builder->table('tracker_sessions', function ($table) { |
|
| 30 | + $this->builder->table('tracker_sessions', function($table) { |
|
| 31 | 31 | $table->dropForeign(['language_id']); |
| 32 | 32 | }); |
| 33 | 33 | } |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->builder->create( |
| 22 | 22 | $this->table, |
| 23 | - function ($table) { |
|
| 23 | + function($table) { |
|
| 24 | 24 | $table->bigIncrements('id'); |
| 25 | 25 | |
| 26 | 26 | $table->string('name')->index(); |