scinote-web/app/models/step_table.rb
2018-11-14 11:57:53 +01:00

6 lines
218 B
Ruby

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