rosa-build/app/models/arch.rb

10 lines
213 B
Ruby
Raw 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
2013-02-28 15:27:50 +00:00
scope :recent, order("#{table_name}.name ASC")
2011-03-15 21:52:27 +00:00
end