##// END OF EJS Templates
remove trailing white space from test/fixtures/workflows.yml...
remove trailing white space from test/fixtures/workflows.yml git-svn-id: http://svn.redmine.org/redmine/trunk@16339 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r15957:7816a4025a03 master
Show More
063_add_roles_permissions.rb
9 lines | 181 B | text/x-ruby | RubyLexer
/ db / migrate / 063_add_roles_permissions.rb
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 class AddRolesPermissions < ActiveRecord::Migration
def self.up
add_column :roles, :permissions, :text
end
def self.down
remove_column :roles, :permissions
end
end