tap/db/migrate/20150325154600_add_encrypted_password_to_users.rb

6 lines
161 B
Ruby

class AddEncryptedPasswordToUsers < ActiveRecord::Migration
def change
add_column :users, :encrypted_password, :string, null: false, default: ""
end
end