7 lines
160 B
Ruby
7 lines
160 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Testrun < ApplicationRecord
|
|
belongs_to :file, class_name: 'CodeOcean::File', optional: true
|
|
belongs_to :submission
|
|
end
|