Completed
Push — dev5 ( d7f21a...db7ded )
by Ron
07:58
created
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.
database/migrations/2018_05_26_055053_create_customers_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('customers', function (Blueprint $table) {
16
+        Schema::create('customers', function(Blueprint $table) {
17 17
             $table->increments('cust_id');
18 18
             $table->text('name');
19 19
             $table->text('dba_name')->nullable();
Please login to merge, or discard this patch.
database/migrations/2014_10_12_100000_create_password_resets_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('password_resets', function (Blueprint $table) {
16
+        Schema::create('password_resets', function(Blueprint $table) {
17 17
             $table->string('email')->index();
18 18
             $table->string('token');
19 19
             $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
database/migrations/2018_05_26_055312_create_customer_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('customer_files', function (Blueprint $table) {
16
+        Schema::create('customer_files', function(Blueprint $table) {
17 17
             $table->increments('cust_file_id');
18 18
             $table->integer('file_id')->unsigned();
19 19
             $table->integer('file_type_id')->unsigned();
Please login to merge, or discard this patch.
database/migrations/2018_05_31_001524_create_tech_tips_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_tips', function (Blueprint $table) {
16
+        Schema::create('tech_tips', function(Blueprint $table) {
17 17
             $table->increments('tip_id');
18 18
             $table->integer('user_id')->unsigned();
19 19
             $table->boolean('public')->default(0);
Please login to merge, or discard this patch.