unsignedInteger("quantity")->default(1); }); Schema::table('orderProduct', function (Blueprint $table) { $table->unsignedInteger("quantity")->default(1); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('cart_items', function (Blueprint $table) { $table->dropColumn("quantity"); }); Schema::table('orderProduct', function (Blueprint $table) { $table->dropColumn("quantity"); }); } }