feat: add support for new fields in user table

This commit is contained in:
2025-06-05 20:49:35 +02:00
parent e774f415d8
commit cb3a6ddc58
3 changed files with 21 additions and 11 deletions

View File

@ -35,4 +35,6 @@ type User struct {
LastLogin *time.Time `json:"last_login"`
PhoneNumber *string `json:"phone_number"`
ProfilePicture *string `json:"profile_picture"`
CreatedBy *uuid.UUID `json:"created_by"`
EmailVerified bool `json:"email_verified"`
}