5 lines
131 B
5 lines
131 B
6 years ago
|
class ChallengeAnswer < ApplicationRecord
|
||
|
default_scope { order("challenge_answers.level asc") }
|
||
|
belongs_to :challenge
|
||
|
end
|