decimal('cost')->nullable()->default('0.00')->after('is_free'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('couriers', function (Blueprint $table) { $table->dropColumn(['cost']); }); } }