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
9
db/migrate/20090318181151_extend_settings_name.rb
Normal file
9
db/migrate/20090318181151_extend_settings_name.rb
Normal file
@ -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…
x
Reference in New Issue
Block a user