6 lines
191 B
SQL
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 *;
|