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

File last commit:

r643:446889b3f0cb
r1705:e14b86453e61
Show More
059_add_roles_assignable.rb
9 lines | 199 B | text/x-ruby | RubyLexer
/ db / migrate / 059_add_roles_assignable.rb
class AddRolesAssignable < ActiveRecord::Migration
def self.up
add_column :roles, :assignable, :boolean, :default => true
end
def self.down
remove_column :roles, :assignable
end
end