This commit is contained in:
rahul shukla 2019-04-05 19:29:04 +05:30
parent 2c9862db57
commit 28c45c9bfa
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')->default('default_value');
$table->string('name')->default('');
$table->dropForeign('product_reviews_customer_id_foreign');
});
}