mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-07 16:09:57 +08:00
6 lines
246 B
Ruby
6 lines
246 B
Ruby
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
|
|
end
|