Additional fields on BaseUser
?
#512
Replies: 3 comments 2 replies
-
@dantownsend I think we should keep the |
Beta Was this translation helpful? Give feedback.
-
I was thinking about this today. One thing we could potentially do is add a I'd like to add 2 factor support to Piccolo Admin at some point, and rather than adding an extra table or columns, we could just use |
Beta Was this translation helpful? Give feedback.
-
how can i create fresh User model because sometimes it needs to make custom User model like my project is mainly login with phone number and otp. so here i don't need username. please make a baseuser where i can define username field like: |
Beta Was this translation helpful? Give feedback.
-
Piccolo has a BaseUser table, which is used for authentication.
These are the columns it currently has:
A common pattern is to have a
Profile
table with a foreign key toBaseUser
for storing additional information.Should we add any additional columns to
BaseUser
?These are the ones I'm considering:
There are others as well, like:
Beta Was this translation helpful? Give feedback.
All reactions