Class: SalesTaxLine

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/sales_tax_line.rb

Overview

create_table :sales_tax_line do |t| t.references :sales_tax_policy t.decimal :rate, precision: 8, scale: 2 t.text :comment t.references :taxed_record, polymorphic: true

t.timestamps

end#