rosa-build/app/models/arch.rb

10 lines
201 B
Ruby
Raw Permalink Normal View History

2011-03-15 21:52:27 +00:00
class Arch < ActiveRecord::Base
DEFAULT = %w[i586 x86_64]
2014-01-21 04:51:49 +00:00
has_many :build_lists, dependent: :destroy
2011-04-07 14:20:21 +01:00
2014-01-21 04:51:49 +00:00
validates :name, presence: true, uniqueness: true
2011-04-07 14:20:21 +01:00
scope :recent, -> { order(:name) }
2011-03-15 21:52:27 +00:00
end