Completed
Push — master ( f43027...ed76a1 )
by Antonio Carlos
08:33
created
2015_03_07_311090_create_tracker_sql_query_bindings_parameters_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('sql_query_bindings_id')->unsigned()->nullable();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311084_create_tracker_system_classes_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')->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311078_create_tracker_devices_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('kind', 16)->index();
Please login to merge, or discard this patch.
migrations/2015_03_07_311075_create_tracker_route_path_parameters_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_path_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/migrations/2015_11_23_311097_create_tracker_languages_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('preference')->index();
Please login to merge, or discard this patch.
src/migrations/2015_11_23_311096_add_tracker_referer_column_to_log.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->integer('referer_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('referer_id');
40 40
             }
41 41
         );
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311088_create_tracker_sql_queries_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('sha1', 40)->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311072_create_tracker_queries_arguments_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('query_id')->unsigned()->index();
Please login to merge, or discard this patch.
src/migrations/2015_03_07_311091_create_tracker_sql_queries_log_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('log_id')->unsigned()->index();
Please login to merge, or discard this patch.