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

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