summaryrefslogtreecommitdiff
path: root/db/migrate/20221104061320_add_disable_download_button_into_application_settings.rb
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