rosa-build/app/models/platform_arch_setting.rb

18 lines
580 B
Ruby
Raw Normal View History

class PlatformArchSetting < ActiveRecord::Base
DEFAULT_TIME_LIVING = 43200 # seconds, 12 hours
MIN_TIME_LIVING = 600 # seconds, 10 minutes
2013-07-29 11:59:01 +01:00
MAX_TIME_LIVING = 360000 # seconds, 100 hours, 4 day and 4 hours
include TimeLiving
belongs_to :arch
belongs_to :platform
2014-01-21 04:51:49 +00:00
validates :arch_id, :platform_id, presence: true
validates :platform_id, :uniqueness => {scope: :arch_id}
scope :by_arch, ->(arch) { where(arch_id: arch) if arch.present? }
scope :by_default, -> { where(default: true) }
attr_accessible :arch_id, :platform_id, :default
end