summaryrefslogtreecommitdiff
path: root/db/migrate/20220531100920_add_license_usage_data_exported_to_application_settings.rb
blob: 825697d53874b2cd61e84425c39c89d0fe4a2969 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddLicenseUsageDataExportedToApplicationSettings < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :application_settings, :license_usage_data_exported, :boolean, default: false, null: false
  end
end