Files
codeocean/db/migrate/20160302133540_create_testruns.rb

14 lines
239 B
Ruby

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