All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
9 lines
139 B
Ruby
9 lines
139 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Benchmark - database model for PC benchmarks
|
|
class Benchmark < Sequel::Model
|
|
|
|
one_to_many :results
|
|
|
|
end
|