@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | 16 | |
| 17 | - Schema::create('Rule', function (Blueprint $table) { |
|
| 17 | + Schema::create('Rule', function(Blueprint $table) { |
|
| 18 | 18 | $table->increments('id'); |
| 19 | 19 | $table->string('title', 100); |
| 20 | 20 | $table->text('rule'); |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $table->creation(); |
| 26 | 26 | }); |
| 27 | 27 | |
| 28 | - Schema::create('RuleTree', function (Blueprint $table) { |
|
| 28 | + Schema::create('RuleTree', function(Blueprint $table) { |
|
| 29 | 29 | $table->increments('id'); |
| 30 | 30 | $table->string('title', 100)->nullable(); |
| 31 | 31 | $table->integer('rule')->unsigned()->nullable(); |