diff --git a/database/migrations/2020_09_25_154539_add_adjustment_to_invoices.php b/database/migrations/2020_09_25_154539_add_adjustment_to_invoices.php new file mode 100644 index 00000000..815200ad --- /dev/null +++ b/database/migrations/2020_09_25_154539_add_adjustment_to_invoices.php @@ -0,0 +1,32 @@ +double('adjustment')->default(null)->nullable(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('invoices', function (Blueprint $table) { + $table->dropColumn('adjustment'); + }); + } +}