8 lines
180 B
8 lines
180 B
6 years ago
|
class CompetitionModule < ApplicationRecord
|
||
|
default_scope { order('position ASC') }
|
||
|
|
||
|
belongs_to :competition
|
||
|
|
||
|
has_one :competition_module_md_content, dependent: :destroy
|
||
|
end
|