Chris@909: class AddIndexToUsersType < ActiveRecord::Migration Chris@909: def self.up Chris@909: add_index :users, :type Chris@909: end Chris@909: Chris@909: def self.down Chris@909: remove_index :users, :type Chris@909: end Chris@909: end