Add SQL Query for update status
This commit is contained in:
@ -17,6 +17,11 @@ SET date = $1,
|
||||
category_id = $5
|
||||
WHERE id = $6;
|
||||
|
||||
-- name: SetTransactionReconciled :exec
|
||||
UPDATE transactions
|
||||
SET status = 'Reconciled'
|
||||
WHERE id = $1;
|
||||
|
||||
-- name: DeleteTransaction :exec
|
||||
DELETE FROM transactions
|
||||
WHERE id = $1;
|
||||
|
Reference in New Issue
Block a user