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
|