discourse-ai/db/post_migrate/20250115181147_drop_ai_summaries_content_range.rb
2025-03-13 13:25:38 +00:00

13 lines
335 B
Ruby

# frozen_string_literal: true
class DropAiSummariesContentRange < ActiveRecord::Migration[7.2]
DROPPED_COLUMNS = { ai_summaries: %i[content_range] }
def up
DROPPED_COLUMNS.each { |table, columns| Migration::ColumnDropper.execute_drop(table, columns) }
end
def down
raise ActiveRecord::IrreversibleMigration
end
end