mirror of
https://github.com/kevin-DL/football_info_api.git
synced 2026-01-11 18:14:28 +00:00
4 lines
114 B
SQL
4 lines
114 B
SQL
-- name: CreateUser :one
|
|
INSERT INTO users (id, name, created_at, updated_at)
|
|
VALUES ($1, $2, $3, $4)
|
|
RETURNING *; |