debian-mirror-gitlab/db/migrate/20220531100920_add_license_usage_data_exported_to_application_settings.rb
2022-07-23 20:15:48 +02:00

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