summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170629180131_cleanup_application_settings_signin_enabled_rename.rb
blob: 52a773ddfee3f39af8f56ad2e9599bda7fee9bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CleanupApplicationSettingsSigninEnabledRename < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    cleanup_concurrent_column_rename :application_settings, :signin_enabled, :password_authentication_enabled
  end

  def down
    rename_column_concurrently :application_settings, :password_authentication_enabled, :signin_enabled
  end
end