summaryrefslogtreecommitdiff
path: root/db/migrate/20171106133143_rename_application_settings_password_authentication_enabled_to_password_authentication_enabled_for_web.rb
blob: 58762a4f852961e44c6d2f009db2a29caca1097f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class RenameApplicationSettingsPasswordAuthenticationEnabledToPasswordAuthenticationEnabledForWeb < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    rename_column_concurrently :application_settings, :password_authentication_enabled, :password_authentication_enabled_for_web
  end

  def down
    cleanup_concurrent_column_rename :application_settings, :password_authentication_enabled_for_web, :password_authentication_enabled
  end
end