Issue #2500 and chaneelog updated

This commit is contained in:
rahul shukla 2020-02-20 10:56:59 +05:30
parent 07b3e3d76a
commit e5a0bc8a0e
3 changed files with 7 additions and 3 deletions

View File

@ -56,6 +56,8 @@
* #2459 [fixed] - shipping address field warning for guest customer not translated.
* #2463 [fixed] - Tax rate is not update on same product.
* #2469 [fixed] - Displaying wrong amount for bundle product in cart.
* #2479 [fixed] - showing total review in recent view product list.
@ -70,6 +72,8 @@
* #2494 [fixed] - Product total inventory for all locale is showing wrong.
* #2500 [fixed] - Database reset fails.
## **v1.0.0-BETA1(5th of February 2020)** - *Release*
* [feature] Updated to laravel version 6.

View File

@ -32,6 +32,6 @@ class CreateCartruleCustomersTable extends Migration
*/
public function down()
{
Schema::dropIfExists('cartrule_customers');
Schema::dropIfExists('cart_rule_customers');
}
}

View File

@ -22,7 +22,7 @@ class CreateCartruleCouponsTable extends Migration
$table->integer('type')->unsigned()->default(0);
$table->boolean('is_primary')->default(0);
$table->date('expired_at')->nullable();
$table->integer('cart_rule_id')->unsigned();
$table->foreign('cart_rule_id')->references('id')->on('cart_rules')->onDelete('cascade');
$table->timestamps();
@ -36,6 +36,6 @@ class CreateCartruleCouponsTable extends Migration
*/
public function down()
{
Schema::dropIfExists('cartrule_coupons');
Schema::dropIfExists('cart_rule_coupons');
}
}