2010-07-06 06:07:46 +04:00
|
|
|
class ChangeChangesPathLengthLimit < ActiveRecord::Migration
|
|
|
|
def self.up
|
2010-07-24 04:19:32 +04:00
|
|
|
# these are two steps to please MySQL 5 on Win32
|
|
|
|
change_column :changes, :path, :text, :default => nil, :null => true
|
2010-07-07 01:06:09 +04:00
|
|
|
change_column :changes, :path, :text, :null => false
|
2010-07-24 04:19:32 +04:00
|
|
|
|
2010-07-06 06:07:46 +04:00
|
|
|
change_column :changes, :from_path, :text
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
change_column :changes, :path, :string, :default => "", :null => false
|
|
|
|
change_column :changes, :from_path, :string
|
|
|
|
end
|
|
|
|
end
|