Files
game-data/src/models/test.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

11 lines
180 B
Ruby

# frozen_string_literal: true
# Test - database model for hardware tests
class Test < Sequel::Model
one_to_many :result
many_to_one :hardware
many_to_many :benchmarks
end