20130117132943_remove_index_articles_on_name.rb 170 Bytes
class RemoveIndexArticlesOnName < ActiveRecord::Migration
  def self.up
    remove_index :articles, :name
  end

  def self.down
    add_index :articles, :name
  end
end