You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
332 B
8 lines
332 B
class ExaminationIntelligentSetting < ApplicationRecord
|
|
belongs_to :sub_discipline
|
|
belongs_to :user
|
|
has_many :examination_type_settings, dependent: :destroy
|
|
has_many :tag_discipline_containers, as: :container, dependent: :destroy
|
|
has_many :item_baskets, -> { order("item_baskets.position ASC") }, dependent: :destroy
|
|
end
|