51 lines
950 B
Go
51 lines
950 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
// source: user.sql
|
|
|
|
package sqlc
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
const insertUser = `-- name: InsertUser :one
|
|
INSERT INTO "user" (
|
|
email, first_name, last_name, password, created_at, updated_at
|
|
) VALUES ( $1, $2, $3, $4, $5, $6 )
|
|
RETURNING id, email, first_name, last_name, password, created_at, updated_at
|
|
`
|
|
|
|
type InsertUserParams struct {
|
|
Email string
|
|
FirstName string
|
|
LastName string
|
|
Password string
|
|
CreatedAt pgtype.Timestamp
|
|
UpdatedAt pgtype.Timestamp
|
|
}
|
|
|
|
func (q *Queries) InsertUser(ctx context.Context, arg InsertUserParams) (User, error) {
|
|
row := q.db.QueryRow(ctx, insertUser,
|
|
arg.Email,
|
|
arg.FirstName,
|
|
arg.LastName,
|
|
arg.Password,
|
|
arg.CreatedAt,
|
|
arg.UpdatedAt,
|
|
)
|
|
var i User
|
|
err := row.Scan(
|
|
&i.ID,
|
|
&i.Email,
|
|
&i.FirstName,
|
|
&i.LastName,
|
|
&i.Password,
|
|
&i.CreatedAt,
|
|
&i.UpdatedAt,
|
|
)
|
|
return i, err
|
|
}
|