tijl.dev-core/internal/queries/models.go
tijl 4a268ef8c7
All checks were successful
build / build (push) Successful in 32s
release-tag / release-image (push) Successful in 16m25s
basic app implementation
2024-08-26 00:18:45 +02:00

59 lines
994 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package queries
import (
"database/sql"
"time"
"github.com/google/uuid"
)
type AppFlagsGame struct {
GameID uuid.UUID
GameSeed uuid.NullUUID
Uid sql.NullString
Tags []string
QuestionAmount int32
QuestionCurrent int32
QuestionCorrect int32
CreatedAt time.Time
LastActivity time.Time
}
type AppFlagsGamesAnswer struct {
GameID uuid.UUID
Question int32
Correct bool
}
type Session struct {
ID int32
Uid string
Token string
Expires sql.NullTime
LastActivity time.Time
CreatedAt time.Time
}
type SessionIp struct {
ID int32
SessionID int32
IpAddress string
Agent string
AccessTime time.Time
}
type User struct {
ID int32
Uid string
Email string
EmailVerified bool
FullName string
Username string
CreatedAt time.Time
UpdatedAt time.Time
}