PERF: Remove foreign keys from bookmarks (#9837)

As a general rule we do not add FKs in Discourse and instead rely on consistency checks at weekly/daily intervals
This commit is contained in:
Martin Brennan
2020-05-20 10:45:49 +10:00
committed by GitHub
parent 72f139191e
commit e334133294

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
class RemoveFksFromBookmarks < ActiveRecord::Migration[6.0]
def change
remove_foreign_key :bookmarks, :topics
remove_foreign_key :bookmarks, :posts
remove_foreign_key :bookmarks, :users
end
end