debian-mirror-gitlab/db/migrate/20211224114539_add_packages_cleanup_package_file_worker_capacity_check_constraint_to_app_settings.rb
2022-03-02 08:16:31 +05:30

16 lines
478 B
Ruby

# frozen_string_literal: true
class AddPackagesCleanupPackageFileWorkerCapacityCheckConstraintToAppSettings < Gitlab::Database::Migration[1.0]
CONSTRAINT_NAME = 'app_settings_p_cleanup_package_file_worker_capacity_positive'
disable_ddl_transaction!
def up
add_check_constraint :application_settings, 'packages_cleanup_package_file_worker_capacity >= 0', CONSTRAINT_NAME
end
def down
remove_check_constraint :application_settings, CONSTRAINT_NAME
end
end