scinote-web/app/models/step_table.rb
2019-06-10 12:24:04 +02:00

9 lines
217 B
Ruby

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