Passed
Pull Request — master (#65)
by Ron
12:10
created
database/migrations/2018_05_26_055124_create_customer_favs_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('customer_favs', function (Blueprint $table) {
16
+        Schema::create('customer_favs', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('user_id')->unsigned();
19 19
             $table->integer('cust_id')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2018_05_23_003698_create_files_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('files', function (Blueprint $table) {
16
+        Schema::create('files', function(Blueprint $table) {
17 17
             $table->increments('file_id');
18 18
             $table->string('file_name');
19 19
             $table->string('file_link');
Please login to merge, or discard this patch.
database/migrations/2018_05_23_003702_create_system_categories_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('system_categories', function (Blueprint $table) {
16
+        Schema::create('system_categories', function(Blueprint $table) {
17 17
             $table->increments('cat_id');
18 18
             $table->string('name')->unique();
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2018_05_23_003703_create_system_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('system_types', function (Blueprint $table) {
16
+        Schema::create('system_types', function(Blueprint $table) {
17 17
             $table->increments('sys_id');
18 18
             $table->integer('cat_id')->unsigned();
19 19
             $table->string('name');
Please login to merge, or discard this patch.
migrations/2018_05_26_055234_create_customer_contact_phones_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('customer_contact_phones', function (Blueprint $table) {
16
+        Schema::create('customer_contact_phones', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('cont_id')->unsigned();
19 19
             $table->integer('phone_type_id')->unsigned();
Please login to merge, or discard this patch.
migrations/2018_05_26_055210_create_customer_system_fields_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('customer_system_fields', function (Blueprint $table) {
16
+        Schema::create('customer_system_fields', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('cust_sys_id')->unsigned();
19 19
             $table->integer('field_id')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2018_06_17_062647_create_user_settings_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('user_settings', function (Blueprint $table) {
16
+        Schema::create('user_settings', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('user_id')->unsigned();
19 19
             $table->boolean('em_tech_tip')->default(1);
Please login to merge, or discard this patch.
database/migrations/2018_05_31_001612_create_tech_tip_files_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('tech_tip_files', function (Blueprint $table) {
16
+        Schema::create('tech_tip_files', function(Blueprint $table) {
17 17
             $table->increments('tip_file_id');
18 18
             $table->integer('tip_id')->unsigned();
19 19
             $table->integer('file_id')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2018_05_23_003700_create_system_file_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function up()
16 16
     {
17
-        Schema::create('system_file_types', function (Blueprint $table) {
17
+        Schema::create('system_file_types', function(Blueprint $table) {
18 18
             $table->increments('type_id');
19 19
             $table->string('description');
20 20
             $table->timestamps();
Please login to merge, or discard this patch.