debian-mirror-gitlab/db/migrate/20170629171610_rename_application_settings_signin_enabled_to_password_authentication_enabled.rb
2017-09-10 17:25:29 +05:30

16 lines
447 B
Ruby

class RenameApplicationSettingsSigninEnabledToPasswordAuthenticationEnabled < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
rename_column_concurrently :application_settings, :signin_enabled, :password_authentication_enabled
end
def down
cleanup_concurrent_column_rename :application_settings, :password_authentication_enabled, :signin_enabled
end
end