Passed
Push — master ( bdd198...b0a61c )
by Iman
03:14
created
database/migrations/2017_03_05_000001_create_payload_column.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@  discard block
 block discarded – undo
8 8
 {
9 9
     public function up(): void
10 10
     {
11
-        Schema::table('temp_tags', function (Blueprint $table) {
11
+        Schema::table('temp_tags', function(Blueprint $table) {
12 12
             $table->json('payload')->nullable();
13 13
         });
14
-        Schema::table('temp_tags', function (Blueprint $table) {
14
+        Schema::table('temp_tags', function(Blueprint $table) {
15 15
             $table->dropColumn('note');
16 16
         });
17 17
     }
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function down(): void
25 25
     {
26
-        Schema::table('temp_tags', function (Blueprint $table) {
26
+        Schema::table('temp_tags', function(Blueprint $table) {
27 27
             $table->dropColumn('payload');
28 28
         });
29 29
     }
Please login to merge, or discard this patch.