mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 04:25:50 +08:00
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.
13 lines
359 B
Ruby
Vendored
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
|