tijl.dev-core/internal/queries/models.go
tijl 862ff1ff7b
All checks were successful
build / build (push) Successful in 1m4s
updates
2024-08-22 14:58:43 +02:00

39 lines
610 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package queries
import (
"database/sql"
"time"
)
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
}