Files
social-rating/backend/internal/models/user.go
2026-04-18 10:21:51 +03:00

24 lines
705 B
Go

package models
import (
"time"
"gorm.io/gorm"
)
type User struct {
ID uint `json:"id" gorm:"primaryKey"`
Email string `json:"email" gorm:"size:255;uniqueIndex;not null"`
PasswordHash string `json:"-" gorm:"size:255;not null"`
IsAdmin bool `json:"isAdmin" gorm:"not null;default:false;index"`
SocialRating *UserSocialRating `json:"socialRating,omitempty" gorm:"foreignKey:UserID"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
func (u *User) AfterCreate(tx *gorm.DB) error {
return tx.FirstOrCreate(&UserSocialRating{}, UserSocialRating{
UserID: u.ID,
}).Error
}