scinote-web/app/models/step_table.rb
2018-11-29 18:07:31 +01:00

6 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