Muyao CHEN 3d616bff50
All checks were successful
Build and test / Build (push) Successful in 2m23s
db: finish sql commands
2024-10-19 17:08:05 +02:00

6 lines
191 B
SQL

-- name: InsertTransaction :exec
INSERT INTO "transaction" (
created_at, updated_at, amount, currency, expense_id, user_id, is_income
) VALUES ( $1, $2, $3, $4, $5, $6, $7 )
RETURNING *;