discourse-ai/db/post_migrate/20250529151302_drop_persona_tables.rb
2025-05-29 15:17:34 +10:00

13 lines
306 B
Ruby

# frozen_string_literal: true
class DropPersonaTables < ActiveRecord::Migration[7.0]
def up
# Drop the old table after copying to new one
drop_table :ai_personas if table_exists?(:ai_personas)
end
def down
raise IrreversibleMigration, "Cannot recreate dropped persona tables"
end
end