Browse Source

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
tags/0.9.0
Eric Davis 15 years ago
parent
commit
7774642b03
1 changed files with 9 additions and 0 deletions
  1. 9
    0
      db/migrate/20090318181151_extend_settings_name.rb

+ 9
- 0
db/migrate/20090318181151_extend_settings_name.rb View 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…
Cancel
Save