Skip to content

Commit 7da13a6

Browse files
committed
fix: forgot a space in sum_by_category
1 parent 94f09df commit 7da13a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/migrations/sqlScript/function_sum_by_category.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CREATE OR REPLACE FUNCTION sum_by_category(start_date DATE, end_date DATE, interval TEXT DEFAULT'month')
1+
CREATE OR REPLACE FUNCTION sum_by_category(start_date DATE, end_date DATE, interval TEXT DEFAULT 'month')
22
RETURNS TABLE(account_id bigint, category_id bigint, total_amount DOUBLE PRECISION
33
AS $$
44
BEGIN

0 commit comments

Comments
 (0)