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

20221104061320_add_disable_download_button_into_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b93085b861743d8ce0a6806be3ea60eaede4e6ac (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AddDisableDownloadButtonIntoApplicationSettings < Gitlab::Database::Migration[2.0]
  def change
    add_column :application_settings, :disable_download_button, :boolean,
               null: false, default: false, comment: 'JiHu-specific column'
  end
end