mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
- We search for conversations by this attribute (e.g. in ReplyMailbox and CsatSurveyController) so it seems like we should have an index on it.
6 lines
141 B
Ruby
6 lines
141 B
Ruby
class AddConversationUuidUniqueIndex < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_index :conversations, :uuid, unique: true
|
|
end
|
|
end
|