##// END OF EJS Templates
Implementing more unit tests for the plugin hooks
Implementing more unit tests for the plugin hooks

File last commit:

r663:603e11d7a5aa
r1705:e14b86453e61
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