Files
Gregor Lohaus 8254a28baa init
2026-04-08 04:29:35 +02:00

18 lines
271 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
package db
import (
"github.com/jackc/pgx/v5/pgtype"
)
type Todo struct {
ID pgtype.UUID
Task string
CreatedAt pgtype.Timestamp
UpdatedAt pgtype.Timestamp
Done pgtype.Bool
}