game-data/src/models/result.rb

14 lines
211 B
Ruby

# frozen_string_literal: true
# Result - database model for benchmark results
class Result < Sequel::Model
many_to_one :hardware
many_to_one :benchmarks
def formatted_score
return @score
end
end