Remove unique constraint from segmented users index (#19544)

This commit is contained in:
Ben Halpern 2023-05-26 11:18:08 -04:00 committed by GitHub
parent 453c2eeccb
commit ca7c395bd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,6 @@ class AddCompositeIndexToSegmentedUsers < ActiveRecord::Migration[7.0]
add_index :segmented_users,
%i[audience_segment_id user_id],
name: "index_segmented_users_on_audience_segment_and_user",
unique: true,
algorithm: :concurrently
end
end