Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20230105180002_remove_new_amount_used_column_on_ci_namespace_monthly_usages.rb')
-rw-r--r--db/post_migrate/20230105180002_remove_new_amount_used_column_on_ci_namespace_monthly_usages.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/db/post_migrate/20230105180002_remove_new_amount_used_column_on_ci_namespace_monthly_usages.rb b/db/post_migrate/20230105180002_remove_new_amount_used_column_on_ci_namespace_monthly_usages.rb
deleted file mode 100644
index 11e212a697d..00000000000
--- a/db/post_migrate/20230105180002_remove_new_amount_used_column_on_ci_namespace_monthly_usages.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-# frozen_string_literal: true
-
-class RemoveNewAmountUsedColumnOnCiNamespaceMonthlyUsages < Gitlab::Database::Migration[2.1]
- enable_lock_retries!
-
- TRIGGER_NAME = 'sync_namespaces_amount_used_columns'
- def up
- remove_rename_triggers :ci_namespace_monthly_usages, TRIGGER_NAME
- remove_column :ci_namespace_monthly_usages, :new_amount_used
- end
-
- def down
- return if column_exists?(:ci_namespace_monthly_usages, :new_amount_used)
-
- # rubocop:disable Migration/AddColumnsToWideTables
- add_column :ci_namespace_monthly_usages, :new_amount_used, :decimal, default: 0.0,
- precision: 18, scale: 2, null: false
- # rubocop:enable Migration/AddColumnsToWideTables
-
- install_rename_triggers :ci_namespace_monthly_usages, :amount_used, :new_amount_used, trigger_name: TRIGGER_NAME
- end
-end