scinote-web/app/models/connection.rb

7 lines
250 B
Ruby
Raw Normal View History

2019-05-09 23:10:02 +08:00
# frozen_string_literal: true
2017-06-23 21:19:08 +08:00
class Connection < ApplicationRecord
2019-05-09 23:10:02 +08:00
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