##// END OF EJS Templates
Fixed: empty lines when displaying repository files with Windows style eol....
Fixed: empty lines when displaying repository files with Windows style eol. git-svn-id: http://redmine.rubyforge.org/svn/trunk@993 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r643:446889b3f0cb
r980:38b185f1dc4d
Show More
059_add_roles_assignable.rb
9 lines | 199 B | text/x-ruby | RubyLexer
/ db / migrate / 059_add_roles_assignable.rb
Jean-Philippe Lang
Added a 'Assignable' boolean on Role model....
r643 class AddRolesAssignable < ActiveRecord::Migration
def self.up
add_column :roles, :assignable, :boolean, :default => true
end
def self.down
remove_column :roles, :assignable
end
end