rosa-build/app/models/relation.rb

6 lines
188 B
Ruby
Raw Normal View History

class Relation < ActiveRecord::Base
belongs_to :target, :polymorphic => true
belongs_to :object, :polymorphic => true
has_many :roles, :autosave => true, :through => :role_lines
end