scinote-web/app/models/step_table.rb
2016-02-12 16:52:43 +01:00

7 lines
174 B
Ruby

class StepTable < ActiveRecord::Base
validates :step, :table, presence: true
belongs_to :step, inverse_of: :step_tables
belongs_to :table, inverse_of: :step_table
end