mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
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:
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
|
||||
Reference in New Issue
Block a user