20110228174632_change_certifier_description_to_text.rb 287 Bytes
class ChangeCertifierDescriptionToText < ActiveRecord::Migration
  def self.up
    change_table :certifiers do |t|
      t.change :description, :text, :limit => nil
    end
  end

  def self.down
    change_table :certifiers do |t|
      t.change :description, :string
    end
  end
end