summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230105180002_remove_new_amount_used_column_on_ci_namespace_monthly_usages.rb
blob: cebda3e353e25a541cb0b04af20a793a52dd33b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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/SchemaAdditionMethodsNoPost, Migration/AddColumnsToWideTables
    add_column :ci_namespace_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_namespace_monthly_usages, :amount_used, :new_amount_used, trigger_name: TRIGGER_NAME
  end
end