Extend the settings.name column so it can fit longer plugin names.
#3010 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2599 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d516d9d9e5
commit
7774642b03
|
@ -0,0 +1,9 @@
|
|||
class ExtendSettingsName < ActiveRecord::Migration
|
||||
def self.up
|
||||
change_column :settings, :name, :string, :limit => 255, :default => '', :null => false
|
||||
end
|
||||
|
||||
def self.down
|
||||
raise ActiveRecord::IrreversibleMigration
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue