diff --git a/database/migrations/2020_09_02_221821_remove_reg_no_order_no_invoices_table.php b/database/migrations/2020_09_02_221821_remove_reg_no_order_no_invoices_table.php new file mode 100644 index 00000000..b983f395 --- /dev/null +++ b/database/migrations/2020_09_02_221821_remove_reg_no_order_no_invoices_table.php @@ -0,0 +1,32 @@ +dropColumn(['reg_no', 'order_no', 'tax_rate', 'billing_charge_rate']); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('invoices', function (Blueprint $table) { + // + }); + } +}