update sqlcgen

This commit is contained in:
Pavel 2024-05-17 20:53:00 +03:00
parent e041a2a49a
commit da0213dd93
2 changed files with 32 additions and 32 deletions

@ -47,7 +47,7 @@ type Answer struct {
Browser string `db:"browser" json:"browser"` Browser string `db:"browser" json:"browser"`
Ip string `db:"ip" json:"ip"` Ip string `db:"ip" json:"ip"`
Start bool `db:"start" json:"start"` Start bool `db:"start" json:"start"`
Utm string `db:"utm" json:"utm"` Utm json.RawMessage `db:"utm" json:"utm"`
} }
type Field struct { type Field struct {

@ -2939,7 +2939,7 @@ type InsertAnswersParams struct {
Browser string `db:"browser" json:"browser"` Browser string `db:"browser" json:"browser"`
Ip string `db:"ip" json:"ip"` Ip string `db:"ip" json:"ip"`
Start bool `db:"start" json:"start"` Start bool `db:"start" json:"start"`
Utm string `db:"utm" json:"utm"` Utm json.RawMessage `db:"utm" json:"utm"`
} }
func (q *Queries) InsertAnswers(ctx context.Context, arg InsertAnswersParams) error { func (q *Queries) InsertAnswers(ctx context.Context, arg InsertAnswersParams) error {