Finally getting rid of the old display_name fields. Trying to use full_name and full_name_override everywhere.

This commit is contained in:
Scott Idem
2025-06-16 19:22:02 -04:00
parent f124018125
commit 882c740880
6 changed files with 136 additions and 59 deletions

View File

@@ -59,11 +59,11 @@ class Person_Base(BaseModel):
professional_title: Optional[str] # Professional title
display_name: Optional[str] # NOTE: This will be changed to full_name_override to match event_badge, event_presenter, and event_profile
informal_display_name: Optional[str] # Custom what they want for informal public display
professional_display_name: Optional[str] # Custom what they want for professional public display. This should include professional title.
# display_name: Optional[str] # NOTE: This will be changed to full_name_override to match event_badge, event_presenter, and event_profile
# informal_display_name: Optional[str] # Custom what they want for informal public display
# professional_display_name: Optional[str] # Custom what they want for professional public display. This should include professional title.
preferred_display_name: Optional[str] # '', 'informal', 'professional'
preferred_display_name: Optional[str] # Which name variant to display? '', 'informal', 'professional', etc
# BEGIN # Auto created name variations
first_last_name: Optional[str] # With SQL view?