11 lines
180 B
Ruby
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
|