Sqlc generated files modified with template file changes.

This commit is contained in:
2026-04-28 16:27:55 +02:00
parent b5e12aa77d
commit 806f5794fc
2 changed files with 12 additions and 0 deletions
+8
View File
@@ -8,6 +8,14 @@ import (
"github.com/jackc/pgx/v5/pgtype"
)
type RefreshToken struct {
ID int64 `json:"id"`
UserID int64 `json:"user_id"`
TokenHash string `json:"token_hash"`
CreatedAt pgtype.Timestamptz `json:"created_at"`
ExpiresAt pgtype.Timestamptz `json:"expires_at"`
}
type User struct {
ID int64 `json:"id"`
Email string `json:"email"`