Passed
Push — main ( d04005...d016cc )
by Garbuz
02:22
created
database/migrations/2021_04_10_063757_create_lgp_dict_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,13 +15,13 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.