summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230104103748_remove_new_amount_used_column.rb
blob: 0aaa7c1bd8f90900976e6088dacb70ff36bcbd5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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