mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 04:25:50 +08:00
11 lines
242 B
Ruby
Vendored
11 lines
242 B
Ruby
Vendored
# 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
|