9ddf4c205c
- We search for conversations by this attribute (e.g. in ReplyMailbox and CsatSurveyController) so it seems like we should have an index on it.
5 lines
141 B
Ruby
5 lines
141 B
Ruby
class AddConversationUuidUniqueIndex < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_index :conversations, :uuid, unique: true
|
|
end
|
|
end
|