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

File last commit:

r851:8f7f305f7cf8
r1705:e14b86453e61
Show More
020_add_role_position.rb
10 lines | 275 B | text/x-ruby | RubyLexer
/ db / migrate / 020_add_role_position.rb
class AddRolePosition < ActiveRecord::Migration
def self.up
add_column :roles, :position, :integer, :default => 1
Role.find(:all).each_with_index {|role, i| role.update_attribute(:position, i+1)}
end
def self.down
remove_column :roles, :position
end
end