@@ -15,13 +15,13 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | public function up() |
| 17 | 17 | { |
| 18 | - Schema::create('lgp_dict', function (Blueprint $table) { |
|
| 18 | + Schema::create('lgp_dict', function(Blueprint $table) { |
|
| 19 | 19 | $table->id(); |
| 20 | 20 | $table->string('name'); |
| 21 | 21 | $table->string('type')->default('select'); |
| 22 | 22 | $table->timestamps(); |
| 23 | 23 | }); |
| 24 | - Schema::create('lgp_dict_option', function (Blueprint $table) { |
|
| 24 | + Schema::create('lgp_dict_option', function(Blueprint $table) { |
|
| 25 | 25 | $table->id(); |
| 26 | 26 | $table->string('name'); |
| 27 | 27 | $table->text('json')->nullable(); |