Files
danbooru/db/migrate/20130305005138_add_bcrypt_fields_to_users.rb

8 lines
176 B
Ruby

class AddBcryptFieldsToUsers < ActiveRecord::Migration[4.2]
def change
execute "set statement_timeout = 0"
add_column :users, :bcrypt_password_hash, :text
end
end