summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-09-04 01:12:40 -0400
committerJesse Luehrs <doy@tozt.net>2020-09-04 01:12:40 -0400
commitf38515d102a4b17bc198ba1ed9ce7fbade99e680 (patch)
tree629870820c999e671c17bef1fa5fd23cb419e94c
parent40b3c9ebdf35243c85395694ebe89206e11bad3b (diff)
downloadmetabase-utils-f38515d102a4b17bc198ba1ed9ce7fbade99e680.tar.gz
metabase-utils-f38515d102a4b17bc198ba1ed9ce7fbade99e680.zip
also exclude down payment from spending graphs
-rw-r--r--data/denorm.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/data/denorm.sql b/data/denorm.sql
index c949dc0..b9c5a6d 100644
--- a/data/denorm.sql
+++ b/data/denorm.sql
@@ -348,5 +348,6 @@ CREATE VIEW spending AS (
category != 'Income Tax' and
category != 'Donations' and
category != 'Family' and
- category != 'Reimbursables'
+ category != 'Reimbursables' and
+ category != 'Down Payment'
);