diff --git a/postgres/queries/transactions.sql b/postgres/queries/transactions.sql index 91322d6..e210153 100644 --- a/postgres/queries/transactions.sql +++ b/postgres/queries/transactions.sql @@ -29,14 +29,12 @@ WHERE id = $1; -- name: GetAllTransactionsForBudget :many SELECT t.* FROM display_transactions AS t -WHERE t.budget_id = $1 -ORDER BY transactions.date DESC; +WHERE t.budget_id = $1; -- name: GetTransactionsForAccount :many SELECT t.* FROM display_transactions AS t WHERE t.account_id = $1 -ORDER BY transactions.date DESC LIMIT 200; -- name: DeleteAllTransactions :execrows diff --git a/postgres/transactions.sql.go b/postgres/transactions.sql.go index 9cc9ead..3be2e9f 100644 --- a/postgres/transactions.sql.go +++ b/postgres/transactions.sql.go @@ -84,7 +84,6 @@ const getAllTransactionsForBudget = `-- name: GetAllTransactionsForBudget :many SELECT t.id, t.date, t.memo, t.amount, t.group_id, t.status, t.account, t.payee_id, t.category_id, t.payee, t.category_group, t.category, t.transfer_account, t.budget_id, t.account_id FROM display_transactions AS t WHERE t.budget_id = $1 -ORDER BY transactions.date DESC ` func (q *Queries) GetAllTransactionsForBudget(ctx context.Context, budgetID uuid.UUID) ([]DisplayTransaction, error) { @@ -192,7 +191,6 @@ const getTransactionsForAccount = `-- name: GetTransactionsForAccount :many SELECT t.id, t.date, t.memo, t.amount, t.group_id, t.status, t.account, t.payee_id, t.category_id, t.payee, t.category_group, t.category, t.transfer_account, t.budget_id, t.account_id FROM display_transactions AS t WHERE t.account_id = $1 -ORDER BY transactions.date DESC LIMIT 200 `