Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# 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
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