mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
9 lines
283 B
Ruby
9 lines
283 B
Ruby
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
|