Show More
Commit Description:
Merge branch 'master' into codejom (text field type migration)
Commit Description:
Merge branch 'master' into codejom (text field type migration)
References:
File last commit:
Show/Diff file:
Action:
db/migrate/20100118174404_add_submitted_to_test_pair_assignment.rb | 9 lines | 229 B | text/x-ruby | RubyLexer |
class AddSubmittedToTestPairAssignment < ActiveRecord::Migration
def self.up
add_column 'test_pair_assignments', 'submitted', :boolean
end
def self.down
remove_column 'test_pair_assignments', 'submitted'
end
end