mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
230e82e948
As we are gradually moving to having a polymorphic bookmarkable relationship on the Bookmark table, we need to make the post_id column nullable to be able to develop and test the new columns, and for cutover/migration purposes later as well.
18 lines
783 B
Ruby
18 lines
783 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MakeSomeBookmarkColumnsNullable < ActiveRecord::Migration[6.1]
|
|
def up
|
|
change_column_null :bookmarks, :post_id, true
|
|
execute "ALTER TABLE bookmarks ADD CONSTRAINT enforce_post_id_or_bookmarkable CHECK (
|
|
(post_id IS NOT NULL) OR (bookmarkable_id IS NOT NULL AND bookmarkable_type IS NOT NULL)
|
|
)"
|
|
end
|
|
|
|
def down
|
|
DB.exec("UPDATE bookmarks SET post_id = bookmarkable_id WHERE bookmarkable_type = 'Post'")
|
|
DB.exec("UPDATE bookmarks SET post_id = (SELECT id FROM posts WHERE topic_id = bookmarkable_id AND post_number = 1), for_topic = TRUE WHERE bookmarkable_type = 'Topic'")
|
|
change_column_null :bookmarks, :post_id, false
|
|
execute "ALTER TABLE bookmarks DROP CONSTRAINT enforce_post_id_or_bookmarkable"
|
|
end
|
|
end
|