Files
sx-fc/app/models/tax_profile.rb
2018-03-16 10:57:32 +06:30

6 lines
149 B
Ruby
Executable File

class TaxProfile < ApplicationRecord
default_scope { order('order_by asc') }
# validations
validates_presence_of :name, :rate, :group_type
end