6 lines
149 B
Ruby
Executable File
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
|