##// END OF EJS Templates
upgrade Rails to 4.2.7.1...
upgrade Rails to 4.2.7.1 git-svn-id: http://svn.redmine.org/redmine/trunk@15734 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2627:7dccf9fda6f3
r15352:f710d594e3b0
Show More
20090503121510_drop_members_role_id.rb
9 lines | 166 B | text/x-ruby | RubyLexer
/ db / migrate / 20090503121510_drop_members_role_id.rb
Jean-Philippe Lang
Allows multiple roles on the same project (#706). Prerequisite for user groups feature....
r2627 class DropMembersRoleId < ActiveRecord::Migration
def self.up
remove_column :members, :role_id
end
def self.down
raise IrreversibleMigration
end
end