Files
codeocean/db/migrate/20160302133540_create_testruns.rb
2021-05-14 22:03:06 +02:00

16 lines
270 B
Ruby

# frozen_string_literal: true
class CreateTestruns < ActiveRecord::Migration[4.2]
def change
create_table :testruns do |t|
t.boolean :passed
t.text :output
t.belongs_to :file
t.belongs_to :submission
t.timestamps
end
end
end