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

20170629171610_rename_application_settings_signin_enabled_to_password_authentication_enabled.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1651a47ebec4a941c9f5713a655bfb706585e76a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class RenameApplicationSettingsSigninEnabledToPasswordAuthenticationEnabled < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

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

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