##// END OF EJS Templates
Comment to memory leak with Postgres and ssl....
Comment to memory leak with Postgres and ssl. git-svn-id: http://redmine.rubyforge.org/svn/branches/swistak@1417 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r643:446889b3f0cb
r1402:2eba0b66d428
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