8 lines
152 B
Ruby
8 lines
152 B
Ruby
class Completion < ApplicationRecord
|
|
belongs_to :contest
|
|
belongs_to :contestant
|
|
belongs_to :puzzle
|
|
|
|
validates :time_seconds, presence: true
|
|
end
|