Sybren A. Stüvel c573122e01 Database: regenerate with sqlc 1.29.0
This just changes the version comments in the generated files. Now they're
consistent with the version of sqlc tracked in go.mod.

No functional changes.
2025-08-26 14:06:26 +02:00

17 lines
207 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package sqlc
import (
"time"
)
type TaskUpdate struct {
ID int64
CreatedAt time.Time
TaskID string
Payload []byte
}