Add Testrun to schema

This commit is contained in:
Maximilian Grundke
2016-03-02 14:52:39 +01:00
parent 551552279b
commit b66e9fc05d
3 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,13 @@
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