### Overview We need to create the UserPracticeAreaSecondaryXref table to support many-to-many relationship between UserPracticeAreaSecondary. Used to be part of - #601 ### Action Items - [ ] Create xref table UserPracticeAreaSecondaryXref field | type | related table | description --- | --- | --- | --- user | FK | User | practice_area | FK | PracticeArea | - [ ] update models.py User model field ``` practice_area_secondary = models.ManyToManyField( "PracticeArea", related_name="users_secondary", blank=True, through="UserPracticeAreaSecondaryXref", ) ``` ### Resources/Instructions - Reference similar code in models.py for guidance
Overview
We need to create the UserPracticeAreaSecondaryXref table to support many-to-many relationship between UserPracticeAreaSecondary.
Used to be part of
Action Items
Create xref table UserPracticeAreaSecondaryXref
update models.py User model field
Resources/Instructions