mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-02 13:59:16 +08:00
19 lines
387 B
Ruby
19 lines
387 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DeleteOrphanPostActions < ActiveRecord::Migration[6.0]
|
|
def up
|
|
sql = <<~SQL
|
|
DELETE FROM post_actions
|
|
USING post_actions pa
|
|
LEFT JOIN posts ON posts.id = pa.post_id
|
|
WHERE posts.id IS NULL
|
|
AND post_actions.id = pa.id
|
|
SQL
|
|
|
|
execute(sql)
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|