Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20171106133144_cleanup_application_settings_password_authentication_enabled_rename.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d54ff3d5f5e75a75df96ecfb6fe279df5c68098b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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