mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:53:41 +08:00
c841e34b62
Because in 8040b95e8c
we removed
a previous post migrate file, some people may not have had those
original polymorphic bookmark columns removed, and the migration
from this PR running will cause duplicate column errors.
cf. https://meta.discourse.org/t/duplicatecolumn-and-multisite-migrate-failed/224480
18 lines
590 B
Ruby
18 lines
590 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddBookmarkPolymorphicColumns < ActiveRecord::Migration[6.1]
|
|
def change
|
|
if !column_exists?(:bookmarks, :bookmarkable_id)
|
|
add_column :bookmarks, :bookmarkable_id, :integer
|
|
end
|
|
|
|
if !column_exists?(:bookmarks, :bookmarkable_type)
|
|
add_column :bookmarks, :bookmarkable_type, :string
|
|
end
|
|
|
|
if !index_exists?(:bookmarks, [:user_id, :bookmarkable_type, :bookmarkable_id])
|
|
add_index :bookmarks, [:user_id, :bookmarkable_type, :bookmarkable_id], name: "idx_bookmarks_user_polymorphic_unique", unique: true
|
|
end
|
|
end
|
|
end
|