gitlab-org--gitlab-foss/db/migrate/20220531100920_add_license_...

10 lines
274 B
Ruby

# 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