Files
fm_be/internal/domain/auth/security_pin_reset_token.go
2026-07-16 22:16:45 +07:00

33 lines
1.0 KiB
Go

package auth
import (
"time"
"gorm.io/gorm"
"wucher/internal/shared/pkg/uuidv7"
)
type SecurityPINResetToken struct {
ID []byte `gorm:"type:binary(16);primaryKey;column:id"`
UserID []byte `gorm:"type:binary(16);index;not null;column:user_id"`
TokenHash []byte `gorm:"type:varbinary(32);uniqueIndex;not null;column:token_hash"`
ExpiresAt time.Time `gorm:"index;not null;column:expires_at"`
UsedAt *time.Time `gorm:"index;column:used_at"`
RequestedIP string `gorm:"type:varchar(128);column:requested_ip"`
UserAgent string `gorm:"type:varchar(255);column:user_agent"`
CreatedAt time.Time
CreatedBy []byte `gorm:"type:binary(16);column:created_by"`
UpdatedAt time.Time
UpdatedBy []byte `gorm:"type:binary(16);column:updated_by"`
}
func (SecurityPINResetToken) TableName() string { return "security_pin_reset_tokens" }
func (prt *SecurityPINResetToken) BeforeCreate(tx *gorm.DB) error {
if len(prt.ID) == 0 {
prt.ID = uuidv7.MustBytes()
}
return nil
}