Files
game-data/src/models/benchmark.rb
Gregory Ballantine 541b5236f0
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Finished transition to Bootstrap 5
2025-07-26 00:55:52 -04:00

10 lines
161 B
Ruby

# frozen_string_literal: true
# Benchmark - database model for PC benchmarks
class Benchmark < Sequel::Model
many_to_many :tests
one_to_many :results
end