8ef06826c3
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4402 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
238 B
Ruby
10 lines
238 B
Ruby
class ChangeProjectsIdentifierLimit < ActiveRecord::Migration
|
|
def self.up
|
|
change_column :projects, :identifier, :string, :limit => nil
|
|
end
|
|
|
|
def self.down
|
|
change_column :projects, :identifier, :string, :limit => 20
|
|
end
|
|
end
|