scinote-web/app/models/step_table.rb

7 lines
205 B
Ruby
Raw Normal View History

2017-06-23 21:19:08 +08:00
class StepTable < ApplicationRecord
2016-02-12 23:52:43 +08:00
validates :step, :table, presence: true
2017-06-28 21:21:32 +08:00
belongs_to :step, inverse_of: :step_tables, optional: true
belongs_to :table, inverse_of: :step_table, optional: true
2016-02-12 23:52:43 +08:00
end