Passed
Pull Request — master (#65)
by Ron
12:10
created
database/migrations/2018_05_23_002159_create_roles_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('roles', function (Blueprint $table) {
17
+        Schema::create('roles', function(Blueprint $table) {
18 18
             $table->increments('role_id');
19 19
             $table->string('name');
20 20
             $table->string('description');
Please login to merge, or discard this patch.
database/migrations/2018_05_31_001623_create_tech_tip_systems_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_systems', function (Blueprint $table) {
16
+        Schema::create('tech_tip_systems', function(Blueprint $table) {
17 17
             $table->increments('tip_tag_id');
18 18
             $table->integer('tip_id')->unsigned();
19 19
             $table->integer('sys_id')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2018_06_04_034353_create_file_links_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('file_links', function (Blueprint $table) {
16
+        Schema::create('file_links', function(Blueprint $table) {
17 17
             $table->increments('link_id');
18 18
             $table->integer('user_id')->unsigned();
19 19
             $table->text('link_hash');
Please login to merge, or discard this patch.
database/migrations/2018_11_23_200827_create_user_initializes_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_initializes', function (Blueprint $table) {
16
+        Schema::create('user_initializes', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('username')->unique();
19 19
             $table->string('token')->unique();
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000000_create_users_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('users', function (Blueprint $table) {
17
+        Schema::create('users', function(Blueprint $table) {
18 18
             $table->increments('user_id');
19 19
             $table->string('username')->unique;
20 20
             $table->string('first_name');
Please login to merge, or discard this patch.
database/migrations/2018_05_23_003338_create_user_role_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_role', function (Blueprint $table) {
16
+        Schema::create('user_role', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('user_id')->unsigned();
19 19
             $table->integer('role_id')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2018_06_04_034419_create_file_link_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('file_link_files', function (Blueprint $table) {
16
+        Schema::create('file_link_files', function(Blueprint $table) {
17 17
             $table->increments('link_file_id');
18 18
             $table->integer('link_id')->unsigned();
19 19
             $table->integer('file_id')->unsigned(); 
Please login to merge, or discard this patch.
database/migrations/2018_05_26_055249_create_customer_notes_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_notes', function (Blueprint $table) {
16
+        Schema::create('customer_notes', function(Blueprint $table) {
17 17
             $table->increments('note_id');
18 18
             $table->integer('cust_id')->unsigned();
19 19
             $table->integer('user_id')->unsigned();
Please login to merge, or discard this patch.
migrations/2018_05_23_004401_create_system_cust_data_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_cust_data_types', function (Blueprint $table) {
17
+        Schema::create('system_cust_data_types', function(Blueprint $table) {
18 18
             $table->increments('data_type_id');
19 19
             $table->string('name');
20 20
             $table->timestamps();
Please login to merge, or discard this patch.