Fixed typo in customer group price migration

This commit is contained in:
Pranshu Tomar 2020-06-05 16:17:53 +05:30
parent fb74d35ad5
commit d5a803cf14
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class CreateProductCustomerGroupPricesTable extends Migration
$table->integer('product_id')->unsigned();
$table->foreign('product_id')->references('id')->on('products')->onDelete('cascade');
$table->integer('customer_group_id')->nullble()->unsigned();
$table->integer('customer_group_id')->unsigned()->nullable();
$table->foreign('customer_group_id')->references('id')->on('customer_groups')->onDelete('cascade');
$table->timestamps();
});