9 lines
243 B
Ruby
9 lines
243 B
Ruby
|
class LfsObject < ActiveRecord::Base
|
||
|
has_many :lfs_objects_projects, dependent: :destroy
|
||
|
has_many :projects, through: :lfs_objects_projects
|
||
|
|
||
|
validates :oid, presence: true, uniqueness: true
|
||
|
|
||
|
mount_uploader :file, LfsObjectUploader
|
||
|
end
|