debian-mirror-gitlab/app/models/lfs_objects_project.rb

9 lines
283 B
Ruby
Raw Normal View History

2015-11-26 14:37:03 +05:30
class LfsObjectsProject < ActiveRecord::Base
belongs_to :project
belongs_to :lfs_object
validates :lfs_object_id, presence: true
validates :lfs_object_id, uniqueness: { scope: [:project_id], message: "already exists in project" }
validates :project_id, presence: true
end