##// END OF EJS Templates
Adds maxlength=255 attribute on attachment description input field (#11365)....
Adds maxlength=255 attribute on attachment description input field (#11365). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9982 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r643:446889b3f0cb
r9799:e0fb60c6b59e
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