mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 12:08:13 +00:00
12 lines
242 B
Ruby
12 lines
242 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RecreateGenerateTitlesPrompt < ActiveRecord::Migration[7.0]
|
|
def up
|
|
DB.exec("DELETE FROM completion_prompts WHERE id = -302")
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|