blob: 0fd5f089db9076d03d7c17fcea5518964d688809 (
plain)
1
2
3
4
5
6
7
8
|
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
|