generated from 4GeeksAcademy/react-flask-hello-deprecated
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
Description
As a user, I need a data model so that my user specific data can be stored.
Requirements
- I need a unique ID (can be serial integer or can be something like email/username)
- email/username (this can be the unique id)
- what constraints do I need here? Is this field unique?
- hashedPassword/encryptedPassword (Do not store plain text passwords... lookup Bcrypt algorithm)
- Other fields you might need?