mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-06 17:30:20 +00:00
11 lines
246 B
Ruby
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
|