mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
15 lines
332 B
Ruby
15 lines
332 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PopulateTopicIdOnBookmarks < ActiveRecord::Migration[6.0]
|
|
def up
|
|
Bookmark
|
|
.where(topic_id: nil)
|
|
.includes(:post)
|
|
.find_each { |bookmark| bookmark.update_column(:topic_id, bookmark.post.topic_id) }
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|