Files
codeocean/db/migrate/20160302133540_create_testruns.rb
Maximilian Grundke b66e9fc05d Add Testrun to schema
2016-03-02 14:52:39 +01:00

14 lines
234 B
Ruby

class CreateTestruns < ActiveRecord::Migration
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