Passed
Pull Request — master (#7)
by Ron
09:11 queued 05:25
created
database/migrations/2020_01_19_104523_create_attribute_values_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('product_attribute_values', function (Blueprint $table) {
16
+        Schema::create('product_attribute_values', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('product_attribute_id');
19 19
             $table->string('value');
Please login to merge, or discard this patch.
database/migrations/2020_01_18_132758_create_warehouses_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('warehouses', function (Blueprint $table) {
16
+        Schema::create('warehouses', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('name');
19 19
             $table->mediumText('description');
Please login to merge, or discard this patch.
database/migrations/2020_01_20_141921_create_product_variants_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('product_variations', function (Blueprint $table) {
16
+        Schema::create('product_variations', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('product_id');
19 19
             $table->unsignedBigInteger('product_sku_id');
Please login to merge, or discard this patch.
database/migrations/2020_01_18_124138_create_products_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('products', function (Blueprint $table) {
16
+        Schema::create('products', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('category_id');
19 19
             $table->string('name');
Please login to merge, or discard this patch.
database/migrations/2020_01_18_123447_create_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('product_categories', function (Blueprint $table) {
16
+        Schema::create('product_categories', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('name');
19 19
             $table->string('slug')->unique();
Please login to merge, or discard this patch.
database/migrations/2020_01_20_141407_create_product_skus_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('product_skus', function (Blueprint $table) {
16
+        Schema::create('product_skus', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('product_id');
19 19
             $table->string('code')->unique();
Please login to merge, or discard this patch.
database/migrations/2020_01_24_160109_create_inventory_stocks_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_stocks', function (Blueprint $table) {
16
+        Schema::create('inventory_stocks', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('warehouse_id');
19 19
             $table->unsignedBigInteger('product_sku_id');
Please login to merge, or discard this patch.
database/migrations/2020_01_19_104451_create_attributes_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('product_attributes', function (Blueprint $table) {
16
+        Schema::create('product_attributes', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('product_id');
19 19
             $table->string('name');
Please login to merge, or discard this patch.
migrations/2020_01_24_171541_create_inventory_stock_movements_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_stock_movements', function (Blueprint $table) {
16
+        Schema::create('inventory_stock_movements', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('stock_id');
19 19
             $table->integer('before')->default(0);
Please login to merge, or discard this patch.