class MigrateUserToDevise < ActiveRecord::Migration
  def self.up
    change_table :users do |t|
      t.string :encrypted_password, :null => false, :limit => 128
      # ...
    end
  end

  def self.down
  end
end