Completed
Push — master ( f43027...ed76a1 )
by Antonio Carlos
08:33
created
src/migrations/2015_11_23_311098_add_language_id_column_to_sessions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     {
21 21
         $this->builder->table(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigInteger('language_id')->unsigned()->nullable()->index();
25 25
             }
26 26
         );
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     {
36 36
         $this->builder->table(
37 37
             $this->table,
38
-            function ($table) {
38
+            function($table) {
39 39
                 $table->dropColumn('language_id');
40 40
             }
41 41
         );
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311074_create_tracker_routes_paths_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->bigInteger('route_id')->unsigned()->index();
Please login to merge, or discard this patch.
migrations/2015_03_13_311094_create_tracker_referer_search_term_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->bigInteger('referer_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/migrations/2015_11_23_311100_add_nullable_to_tracker_error.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         try {
22 22
             $this->builder->table(
23 23
                 $this->table,
24
-                function ($table) {
24
+                function($table) {
25 25
                     $table->string('code')->nullable()->change();
26 26
                 }
27 27
             );
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311080_create_tracker_referers_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->bigInteger('domain_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311076_create_tracker_agents_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('name')->unique();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311083_create_tracker_errors_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->string('code')->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311081_create_tracker_geoip_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         $this->builder->create(
22 22
             $this->table,
23
-            function ($table) {
23
+            function($table) {
24 24
                 $table->bigIncrements('id');
25 25
 
26 26
                 $table->double('latitude')->nullable()->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_13_311095_add_tracker_referer_columns.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
     {
23 23
         $this->builder->table(
24 24
             $this->table,
25
-            function ($table) {
25
+            function($table) {
26 26
                 $table->string('medium')->nullable()->index();
27 27
                 $table->string('source')->nullable()->index();
28 28
                 $table->string('search_terms_hash')->nullable()->index();
29 29
             }
30 30
         );
31 31
 
32
-        $this->builder->table($this->foreign, function ($table) {
32
+        $this->builder->table($this->foreign, function($table) {
33 33
             $table->foreign('referer_id', 'tracker_referers_referer_id_fk')
34 34
                 ->references('id')
35 35
                 ->on('tracker_referers')
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     {
48 48
         $this->builder->table(
49 49
             $this->table,
50
-            function ($table) {
50
+            function($table) {
51 51
                 $table->dropColumn('medium');
52 52
                 $table->dropColumn('source');
53 53
                 $table->dropColumn('search_terms_hash');
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
         $this->builder->table(
58 58
             $this->foreign,
59
-            function ($table) {
59
+            function($table) {
60 60
                 $table->dropForeign('tracker_referers_referer_id_fk');
61 61
             }
62 62
         );
Please login to merge, or discard this patch.