mirror of
https://github.com/redmine/redmine.git
synced 2025-10-30 18:06:30 +01:00
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
|