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

20170602154736_add_help_page_hide_commercial_content_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d358020d182f4069e73b973e01738feee3da4b60 (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable Migration/SaferBooleanColumn
class AddHelpPageHideCommercialContentToApplicationSettings < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :application_settings, :help_page_hide_commercial_content, :boolean, default: false
  end
end