Admin can set enterprises to charge or not charge sales tax

This commit is contained in:
Rohan Mitchell
2015-04-08 10:40:38 +10:00
parent 08fef890ec
commit 9bbc151cae
6 changed files with 26 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddChargesSalesTaxToEnterprises < ActiveRecord::Migration
def change
add_column :enterprises, :charges_sales_tax, :boolean, null: false, default: false
end
end