remove default values

This commit is contained in:
İsmail
2024-11-07 16:14:34 +03:00
parent daab053b6a
commit 90910a958b
5 changed files with 6 additions and 6 deletions

View File

@@ -74,7 +74,7 @@ type User struct {
// Blocked indicates whether the user is blocked. Blocked users can't use the system.
Blocked bool
// LastLogin is the last time the user logged in to IdP
LastLogin time.Time `gorm:"default:null"`
LastLogin time.Time
// CreatedAt records the time the user was created
CreatedAt time.Time