summaryrefslogtreecommitdiff
path: root/sql/sexps.sql
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2024-10-17 17:40:49 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2024-10-17 17:40:49 +0200
commit650053446d18424500ae6330b5ad0da81fa86373 (patch)
tree248fc9099a3acb7308621af6fba90dea1d99b852 /sql/sexps.sql
parente6e3f258c519fdef01d1654a50b15335b57c4153 (diff)
downloadgosten-650053446d18424500ae6330b5ad0da81fa86373.tar.gz
gosten-650053446d18424500ae6330b5ad0da81fa86373.tar.bz2
gosten-650053446d18424500ae6330b5ad0da81fa86373.zip
SQL: Fetch * instead of specific columns for simplicity
Diffstat (limited to 'sql/sexps.sql')
-rw-r--r--sql/sexps.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sexps.sql b/sql/sexps.sql
index 8279326..884e1f3 100644
--- a/sql/sexps.sql
+++ b/sql/sexps.sql
@@ -1,4 +1,4 @@
-- name: GetSingleExpenses :many
-SELECT id, description
+SELECT *
FROM single_expenses
WHERE user_id = $1; \ No newline at end of file