Passed
Push — master ( 5e7214...7fb5d7 )
by Gianluca
03:51
created
database/migrations/2020_12_07_082327_create_type_payment_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('payment_type', function (Blueprint $table) {
16
+        Schema::create('payment_type', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2020_12_07_082433_create_order_products.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_order', function (Blueprint $table) {
16
+        Schema::create('product_order', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->unsignedBigInteger('order_id');
19 19
             $table->unsignedBigInteger('product_id');
Please login to merge, or discard this patch.
database/migrations/2020_12_02_085259_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('categories', function (Blueprint $table) {
16
+        Schema::create('categories', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2020_12_02_085259_create_subcategories_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('subcategories', function (Blueprint $table) {
16
+        Schema::create('subcategories', function(Blueprint $table) {
17 17
             $table->id();
18 18
             $table->string('name');
19 19
             $table->unsignedBigInteger('category_id');
Please login to merge, or discard this patch.