Files
redmine_contracts/app/models/overhead_budget.rb
2011-09-15 10:38:16 -07:00

15 lines
278 B
Ruby

class OverheadBudget < ActiveRecord::Base
unloadable
# Associations
belongs_to :deliverable
belongs_to :time_entry_activity
# Validations
validates_presence_of :time_entry_activity_id
# Accessors
include DollarizedAttribute
dollarized_attribute :budget
end