mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-24 06:53:41 +00:00
13 lines
335 B
Ruby
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
|