Test Setup Failed
Push — master ( 30e56b...24915e )
by Manu
03:32
created
database/migrations/2016_12_10_232027_create_brands_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('brands', function (Blueprint $table) {
16
+        Schema::create('brands', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->timestamps();
19 19
         });
Please login to merge, or discard this patch.
database/migrations/2016_12_10_232000_create_inventory_objects_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('inventory_objects', function (Blueprint $table) {
16
+        Schema::create('inventory_objects', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->timestamps();
19 19
         });
Please login to merge, or discard this patch.
database/migrations/2017_06_01_175449_create_migrations_table.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -34,13 +34,13 @@
 block discarded – undo
34 34
         });
35 35
 
36 36
         Schema::table('inventories', function($table) {
37
-          $table->foreign('material_type_id')->references('id')->on('material_type')->onDelete('cascade');
38
-          $table->foreign('brand_id')->references('id')->on('brand')->onDelete('cascade');
39
-          $table->foreign('model_id')->references('id')->on('brand_model')->onDelete('cascade');
40
-          $table->foreign('location_id')->references('id')->on('location')->onDelete('cascade');
41
-          $table->foreign('moneySourceId')->references('id')->on('moneySource')->onDelete('cascade');
42
-          $table->foreign('provider_id')->references('id')->on('providers')->onDelete('cascade');
43
-  });
37
+            $table->foreign('material_type_id')->references('id')->on('material_type')->onDelete('cascade');
38
+            $table->foreign('brand_id')->references('id')->on('brand')->onDelete('cascade');
39
+            $table->foreign('model_id')->references('id')->on('brand_model')->onDelete('cascade');
40
+            $table->foreign('location_id')->references('id')->on('location')->onDelete('cascade');
41
+            $table->foreign('moneySourceId')->references('id')->on('moneySource')->onDelete('cascade');
42
+            $table->foreign('provider_id')->references('id')->on('providers')->onDelete('cascade');
43
+    });
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this 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('inventories', function (Blueprint $table) {
16
+        Schema::create('inventories', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('public_id');
19 19
             $table->string('name', 80);
Please login to merge, or discard this patch.
database/migrations/2017_05_31_122910_create_brand_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('brand', function (Blueprint $table) {
16
+        Schema::create('brand', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 120);
19 19
             $table->string('shortName', 50);
Please login to merge, or discard this patch.
database/migrations/2016_11_24_174808_create_studies_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('studies', function (Blueprint $table) {
16
+        Schema::create('studies', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->timestamps();
19 19
         });
Please login to merge, or discard this patch.
database/migrations/2017_05_30_172008_create_moneySource_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('moneySource', function (Blueprint $table) {
16
+        Schema::create('moneySource', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 120);
19 19
             $table->string('shortName', 50);
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')->index();
19 19
             $table->timestamp('created_at')->nullable();
Please login to merge, or discard this patch.
database/migrations/2017_05_24_162058_create_brand_model_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('brand_model', function (Blueprint $table) {
16
+        Schema::create('brand_model', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 80);
19 19
             $table->string('description', 120);
Please login to merge, or discard this patch.
database/migrations/2017_05_24_163656_create_material_type_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('material_type', function (Blueprint $table) {
16
+        Schema::create('material_type', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->string('name', 80);
19 19
             $table->string('description', 120);
Please login to merge, or discard this patch.