mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
9 lines
288 B
Ruby
9 lines
288 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
|
|
has_one :step_orderable_element, as: :orderable, dependent: :destroy
|
|
end
|