discourse-ai/db/post_migrate/20250115181147_drop_ai_summaries_content_range.rb

13 lines
335 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
class DropAiSummariesContentRange < ActiveRecord::Migration[7.2]
2025-03-13 14:25:38 +01:00
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