discourse-ai/db/post_migrate/20240609232736_drop_command...

11 lines
246 B
Ruby

# frozen_string_literal: true
class DropCommandsFromAiPersonas < ActiveRecord::Migration[7.0]
def down
raise ActiveRecord::IrreversibleMigration
end
def up
Migration::ColumnDropper.execute_drop(:ai_personas, [:commands])
end
end