debian-mirror-gitlab/db/post_migrate/20171106133144_cleanup_application_settings_password_authentication_enabled_rename.rb
2018-03-17 18:26:18 +05:30

16 lines
489 B
Ruby

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