ontohub/ontohub-models

View on GitHub
app/models/library.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# The Library can contain any number of OMS
class Library < Document
  one_to_many :oms, class: OMS, key: :document_id
end