mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:09:33 +08:00
e334133294
As a general rule we do not add FKs in Discourse and instead rely on consistency checks at weekly/daily intervals
10 lines
241 B
Ruby
10 lines
241 B
Ruby
# 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
|