20130126080736_change_memory_to_long_text.rb 338B

123456789101112
  1. class ChangeMemoryToLongText < ActiveRecord::Migration
  2. def up
  3. change_column :agents, :memory, :text, :limit => 4294967295
  4. change_column :events, :payload, :text, :limit => 16777215
  5. end
  6. def down
  7. change_column :agents, :memory, :text, :limit => 65535
  8. change_column :events, :payload, :text, :limit => 65535
  9. end
  10. end