Merge pull request #807 from rahulshukla-webkul/development

Development
This commit is contained in:
Jitendra Singh 2019-04-05 19:32:01 +05:30 committed by GitHub
commit 1f528736ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class AlterProductReviewsTable extends Migration
public function up()
{
Schema::table('product_reviews', function (Blueprint $table) {
$table->string('name');
$table->string('name')->default('');
$table->dropForeign('product_reviews_customer_id_foreign');
});
}