Show More
Commit Description:
updated graded_at fields for graded submissions
Commit Description:
updated graded_at fields for graded submissions
File last commit:
Show/Diff file:
Action:
db/migrate/20150128165518_create_test_pair_assignments.rb | 16 lines | 354 B | text/x-ruby | RubyLexer |
class CreateTestPairAssignments < ActiveRecord::Migration
def up
create_table :test_pair_assignments do |t|
t.integer "user_id"
t.integer "problem_id"
t.integer "test_pair_id"
t.integer "request_number"
t.boolean "submitted"
t.timestamps
end
end
def down
drop_table :test_pair_assignments
end
end