mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
cb54bf4f45
This syncs the value of the `reply_id` column into the `reply_post_id` column until all servers have been deployed and the post migrations ran.
Follow-up to ab07b945c2
17 lines
315 B
Ruby
17 lines
315 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RenameReplyIdColumn < ActiveRecord::Migration[6.0]
|
|
def up
|
|
add_column :post_replies, :reply_post_id, :integer
|
|
|
|
execute <<~SQL
|
|
UPDATE post_replies
|
|
SET reply_post_id = reply_id
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|