mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 19:53:53 -06:00
FIX: missing unique index on category_users
This commit is contained in:
parent
e84864ab0e
commit
ed71674c45
@ -0,0 +1,21 @@
|
||||
class AddUniqueIndexToCategoryUsers < ActiveRecord::Migration
|
||||
def up
|
||||
execute <<SQL
|
||||
DELETE FROM category_users cu USING category_users cu1
|
||||
WHERE cu.user_id = cu1.user_id AND
|
||||
cu.category_id = cu1.category_id AND
|
||||
cu.notification_level = cu1.notification_level AND
|
||||
cu.id < cu1.id
|
||||
SQL
|
||||
|
||||
add_index :category_users, [:user_id, :category_id, :notification_level],
|
||||
name: 'idx_category_users_u1', unique: true
|
||||
add_index :category_users, [:category_id, :user_id, :notification_level],
|
||||
name: 'idx_category_users_u2', unique: true
|
||||
end
|
||||
|
||||
def down
|
||||
remove_index :category_users, name: 'idx_category_users_u1'
|
||||
remove_index :category_users, name: 'idx_category_users_u2'
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user