@@ -13,7 +13,7 @@ |
||
| 13 | 13 | public function run() |
| 14 | 14 | { |
| 15 | 15 | Capsule::schema()->dropIfExists('leagues'); |
| 16 | - Capsule::schema()->create('leagues', function (Blueprint $table) { |
|
| 16 | + Capsule::schema()->create('leagues', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->string('name'); |
| 19 | 19 | $table->timestamps(); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | public function run() |
| 14 | 14 | { |
| 15 | 15 | Capsule::schema()->dropIfExists('league_match_days'); |
| 16 | - Capsule::schema()->create('league_match_days', function (Blueprint $table) { |
|
| 16 | + Capsule::schema()->create('league_match_days', function(Blueprint $table) { |
|
| 17 | 17 | $table->increments('id'); |
| 18 | 18 | $table->integer('league_id'); |
| 19 | 19 | $table->integer('day')->default(0); |