20100705164950_change_changes_path_length_limit.rb
14 lines
| 461 B
| text/x-ruby
|
RubyLexer
|
r3714 | class ChangeChangesPathLengthLimit < ActiveRecord::Migration | ||
def self.up | ||||
|
r3746 | # these are two steps to please MySQL 5 on Win32 | ||
change_column :changes, :path, :text, :default => nil, :null => true | ||||
|
r3716 | change_column :changes, :path, :text, :null => false | ||
|
r7635 | |||
|
r3714 | 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 | ||||