boolean('reconciled')->default(0); }); Schema::table('invoice_payments', function ($table) { $table->boolean('reconciled')->default(0); }); Schema::table('payments', function ($table) { $table->boolean('reconciled')->default(0); }); Schema::table('revenues', function ($table) { $table->boolean('reconciled')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('bill_payments', function ($table) { $table->dropColumn('reconciled'); }); Schema::table('invoice_payments', function ($table) { $table->dropColumn('reconciled'); }); Schema::table('payments', function ($table) { $table->dropColumn('reconciled'); }); Schema::table('revenues', function ($table) { $table->dropColumn('reconciled'); }); } }