scinote-web/app/models/step_table.rb
2017-06-28 15:21:32 +02:00

7 lines
205 B
Ruby

class StepTable < ApplicationRecord
validates :step, :table, presence: true
belongs_to :step, inverse_of: :step_tables, optional: true
belongs_to :table, inverse_of: :step_table, optional: true
end