summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230104103748_remove_new_amount_used_column.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20230104103748_remove_new_amount_used_column.rb')
-rw-r--r--db/post_migrate/20230104103748_remove_new_amount_used_column.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/db/post_migrate/20230104103748_remove_new_amount_used_column.rb b/db/post_migrate/20230104103748_remove_new_amount_used_column.rb
new file mode 100644
index 00000000000..0aaa7c1bd8f
--- /dev/null
+++ b/db/post_migrate/20230104103748_remove_new_amount_used_column.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+
+class RemoveNewAmountUsedColumn < Gitlab::Database::Migration[2.1]
+ TRIGGER_NAME = 'sync_projects_amount_used_columns'
+ def up
+ remove_rename_triggers :ci_project_monthly_usages, TRIGGER_NAME
+ remove_column :ci_project_monthly_usages, :new_amount_used
+ end
+
+ def down
+ return if column_exists?(:ci_project_monthly_usages, :new_amount_used)
+
+ # rubocop:disable Migration/SchemaAdditionMethodsNoPost, Migration/AddColumnsToWideTables
+ add_column :ci_project_monthly_usages, :new_amount_used, :decimal, default: 0.0,
+ precision: 18, scale: 2, null: false
+ # rubocop:enable Migration/SchemaAdditionMethodsNoPost, Migration/AddColumnsToWideTables
+
+ install_rename_triggers :ci_project_monthly_usages, :amount_used, :new_amount_used, trigger_name: TRIGGER_NAME
+ end
+end