Files
galaxy-game/backend/internal/postgres/jet/backend/model/auth_challenges.go
T
2026-05-06 10:14:55 +03:00

25 lines
492 B
Go

//
// Code generated by go-jet DO NOT EDIT.
//
// WARNING: Changes to this file may cause incorrect behavior
// and will be lost if the code is regenerated
//
package model
import (
"github.com/google/uuid"
"time"
)
type AuthChallenges struct {
ChallengeID uuid.UUID `sql:"primary_key"`
Email string
CodeHash []byte
Attempts int32
CreatedAt time.Time
ExpiresAt time.Time
ConsumedAt *time.Time
PreferredLanguage string
}