mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-04 14:44:26 +08:00
12 lines
317 B
Ruby
12 lines
317 B
Ruby
class StepAsset < ApplicationRecord
|
|
validates :step, :asset, presence: true
|
|
|
|
belongs_to :step,
|
|
inverse_of: :step_assets,
|
|
touch: true,
|
|
optional: true
|
|
belongs_to :asset,
|
|
inverse_of: :step_asset,
|
|
dependent: :destroy,
|
|
optional: true
|
|
end
|