8 lines
171 B
Ruby
8 lines
171 B
Ruby
class AddBcryptFieldsToUsers < ActiveRecord::Migration
|
|
def change
|
|
execute "set statement_timeout = 0"
|
|
|
|
add_column :users, :bcrypt_password_hash, :text
|
|
end
|
|
end
|