IAV-848/feat(customer-care): named unique constraint on CustomerCareAgentIntegration
Summary
Named the unique constraint on customer_care_agent_integrations table and added an explicit name attribute to the integration_type column mapping.
Changes
- Added
name = "uk_agent_integration_type"to the@UniqueConstrainton(customer_care_agent_id, integration_type) - Added
name = "integration_type"to the@Columnannotation onintegrationTypefield for explicit column naming
Closes IAV-848