class Library::BibContributor < ApplicationRecord
  enum role: [
    :author,
    :coauthor,
    :illustrator,
    :editor,
    :director,
    :conductor,
    :organization,
    :translator,
    :other
  ]

  belongs_to :bib
  belongs_to :contributor
end
