aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/edge.rb
blob: 55e0c31fcb3a3d4269194cbde67721fb2af01375 (plain) (tree)
1
2
3
4
5




                                                                          
# This class models an edge in a directed graph.
class Edge < ActiveRecord::Base
  belongs_to :source, :class_name => 'Vertex', :foreign_key => 'source_id'
  belongs_to :sink,   :class_name => 'Vertex', :foreign_key => 'sink_id'
end