fix: remove uniqueness constraint for email

This commit is contained in:
Ferdinand Mütsch 2021-04-14 00:17:02 +02:00
parent c8e7fb461a
commit a22836a644
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ func init() {
type User struct {
ID string `json:"id" gorm:"primary_key"`
ApiKey string `json:"api_key" gorm:"unique"`
Email string `json:"email" gorm:"uniqueIndex:idx_user_email; size:255"`
Email string `json:"email" gorm:"index:idx_user_email; size:255"`
Password string `json:"-"`
CreatedAt CustomTime `gorm:"type:timestamp; default:CURRENT_TIMESTAMP" swaggertype:"string" format:"date" example:"2006-01-02 15:04:05.000"`
LastLoggedInAt CustomTime `gorm:"type:timestamp; default:CURRENT_TIMESTAMP" swaggertype:"string" format:"date" example:"2006-01-02 15:04:05.000"`