tap/db/migrate/20160202133903_remove_encrypted_password_from_users_again.rb

6 lines
148 B
Ruby
Raw Normal View History

2016-02-02 13:42:02 +00:00
class RemoveEncryptedPasswordFromUsersAgain < ActiveRecord::Migration
def change
remove_column :users, :encrypted_password, :string
end
end