mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
12 lines
355 B
Ruby
12 lines
355 B
Ruby
class Connection < ApplicationRecord
|
|
belongs_to :to,
|
|
class_name: 'MyModule',
|
|
foreign_key: 'input_id',
|
|
inverse_of: :inputs,
|
|
optional: true
|
|
belongs_to :from,
|
|
class_name: 'MyModule',
|
|
foreign_key: 'output_id',
|
|
inverse_of: :outputs,
|
|
optional: true
|
|
end
|