Completed
Push — master ( 0d5e2f...775857 )
by Ariel
08:13
created
migrations/2016_07_09_000001_add_humanresource_calendar_link.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      */
12 12
     public function up()
13 13
     {
14
-        Schema::table('humanresources', function ($table) {
14
+        Schema::table('humanresources', function($table) {
15 15
             $table->string('calendar_link')->nullable();
16 16
         });
17 17
     }
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function down()
25 25
     {
26
-        Schema::table('humanresources', function ($table) {
26
+        Schema::table('humanresources', function($table) {
27 27
             $table->dropColumn('calendar_link');
28 28
         });
29 29
     }
Please login to merge, or discard this patch.