mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
fcc2e7ebbf
This commit migrates all bookmarks to be polymorphic (using the bookmarkable_id and bookmarkable_type) columns. It also deletes all the old code guarded behind the use_polymorphic_bookmarks setting and changes that setting to true for all sites and by default for the sake of plugins. No data is deleted in the migrations, the old post_id and for_topic columns for bookmarks will be dropped later on.
23 lines
593 B
Ruby
23 lines
593 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BackfillPolymorphicBookmarks < ActiveRecord::Migration[7.0]
|
|
def up
|
|
DB.exec(<<~SQL)
|
|
UPDATE bookmarks
|
|
SET bookmarkable_id = post_id, bookmarkable_type = 'Post'
|
|
WHERE NOT bookmarks.for_topic AND bookmarkable_id IS NULL
|
|
SQL
|
|
|
|
DB.exec(<<~SQL)
|
|
UPDATE bookmarks
|
|
SET bookmarkable_id = posts.topic_id, bookmarkable_type = 'Topic'
|
|
FROM posts
|
|
WHERE bookmarks.for_topic AND posts.id = bookmarks.post_id AND bookmarkable_id IS NULL
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|