mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-08-03 19:53:28 +00:00
12 lines
241 B
Ruby
12 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveDetectTextLocalePrompt < ActiveRecord::Migration[7.0]
|
|
def up
|
|
execute "DELETE FROM completion_prompts WHERE id = -309"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|