tap/db/migrate/20150321161136_remove_encrypted_password_from_users.rb

6 lines
143 B
Ruby

class RemoveEncryptedPasswordFromUsers < ActiveRecord::Migration
def change
remove_column :users, :encrypted_password, :string
end
end