Raises 60-character limit for document titles to 255 (#12312).

git-svn-id: http://svn.redmine.org/redmine/trunk@14261 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2015-05-10 08:45:56 +00:00
parent 77e657b719
commit f8a9a78ecf
4 changed files with 18 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
class ChangeDocumentsTitleLimit < ActiveRecord::Migration
def self.up
change_column :documents, :title, :string, :limit => nil, :default => '', :null => false
end
def self.down
change_column :documents, :title, :string, :limit => 60, :default => '', :null => false
end
end