scinote-web/app/models/connection.rb

7 lines
246 B
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class Connection < ActiveRecord::Base
belongs_to :to, class_name: 'MyModule', foreign_key: 'input_id',
inverse_of: :inputs
belongs_to :from, class_name: 'MyModule', foreign_key: 'output_id',
inverse_of: :outputs
2016-02-12 23:52:43 +08:00
end