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

20180216120020_allow_domain_verification_to_be_disabled.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 18e4f534105fcfdee8095a06852497e51d0e1f9f (plain)
1
2
3
4
5
6
7
class AllowDomainVerificationToBeDisabled < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :application_settings, :pages_domain_verification_enabled, :boolean, default: true, null: false
  end
end