Sha256: 2d3e23e7924be86f50c9af3e5787b712609612526f347ac2e4d22e5cded1160b

Contents?: true

Size: 922 Bytes

Versions: 5

Compression:

Stored size: 922 Bytes

Contents

class ManifestationRelationship < ActiveRecord::Base
  belongs_to :parent, foreign_key: 'parent_id', class_name: 'Manifestation'
  belongs_to :child, foreign_key: 'child_id', class_name: 'Manifestation'
  belongs_to :manifestation_relationship_type, optional: true
  validate :check_parent
  validates_presence_of :parent_id, :child_id
  acts_as_list scope: :parent_id

  def check_parent
    if parent_id == child_id
      errors.add(:parent)
      errors.add(:child)
    end
  end
end

# == Schema Information
#
# Table name: manifestation_relationships
#
#  id                                 :integer          not null, primary key
#  parent_id                          :integer
#  child_id                           :integer
#  manifestation_relationship_type_id :integer
#  created_at                         :datetime
#  updated_at                         :datetime
#  position                           :integer
#

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
enju_biblio-0.3.2 app/models/manifestation_relationship.rb
enju_biblio-0.3.1 app/models/manifestation_relationship.rb
enju_biblio-0.3.0 app/models/manifestation_relationship.rb
enju_biblio-0.3.0.rc.1 app/models/manifestation_relationship.rb
enju_biblio-0.3.0.beta.2 app/models/manifestation_relationship.rb