rosa-build/app/models/project_statistic.rb

11 lines
293 B
Ruby

class ProjectStatistic < ActiveRecord::Base
belongs_to :arch
belongs_to :project
validates :arch_id, :project_id, :average_build_time, :build_count, :presence => true
validates :project_id, :uniqueness => {:scope => :arch_id}
attr_accessible :average_build_time, :build_count
end