tap/db/migrate/20160202133903_remove_encrypted_password_from_users_again.rb
2016-02-02 14:42:02 +01:00

6 lines
148 B
Ruby

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