@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('orders', function (Blueprint $table) { |
|
| 16 | + Schema::create('orders', function(Blueprint $table) { |
|
| 17 | 17 | $table->integer('id', true); |
| 18 | 18 | |
| 19 | 19 | $table->integer('employee_id')->nullable()->index('employee_id_2'); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('employees', function (Blueprint $table) { |
|
| 16 | + Schema::create('employees', function(Blueprint $table) { |
|
| 17 | 17 | $table->integer('id', true); |
| 18 | 18 | |
| 19 | 19 | $table->string('company', 50)->nullable()->index('company'); |