discourse/plugins/discourse-ai/db/migrate/20251117000003_drop_monthly_credit_columns.rb
David Taylor 1d5d9646c6
DEV: Promote old post-deploy migrations to pre-deploy (#38595)
This promotes all post-migrations which existed in `v2026.1` to regular
pre-deploy migrations. We do this after each stable/esr release to
reduce the probability of pre/post deploy timing issues.
2026-03-13 19:09:30 +00:00

13 lines
359 B
Ruby
Vendored

# frozen_string_literal: true
class DropMonthlyCreditColumns < ActiveRecord::Migration[8.0]
DROPPED_COLUMNS = { llm_credit_allocations: %i[monthly_credits monthly_usage] }
def up
DROPPED_COLUMNS.each { |table, columns| Migration::ColumnDropper.execute_drop(table, columns) }
end
def down
raise ActiveRecord::IrreversibleMigration
end
end