string('amount_paid')->nullable()->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('invoices', function (Blueprint $table) { $table->dropColumn('amount_paid'); }); } }