issue #802 sqllite

This commit is contained in:
rahul shukla 2019-04-05 19:19:10 +05:30
parent ee189baf7a
commit 91477e50c0
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('default_value');
$table->dropForeign('product_reviews_customer_id_foreign');
});
}