Passed
Push — master ( 1bd07e...86e726 )
by Curtis
04:35 queued 55s
created
migrations/2021_08_27_192146_add_column_titl_and_chr_to_people_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('people', function (Blueprint $table) {
16
+        Schema::table('people', function(Blueprint $table) {
17 17
             $table->string('titl')->nullable();
18 18
             $table->string('chr')->nullable();
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('people', function (Blueprint $table) {
29
+        Schema::table('people', function(Blueprint $table) {
30 30
             $table->dropColumn(['titl', 'chr']);
31 31
         });
32 32
     }
Please login to merge, or discard this patch.