From 8441b4339bc7a4412cfc126ac8c1155eed2e4aed Mon Sep 17 00:00:00 2001 From: Chris Li <c58li@uwaterloo.ca> Date: Thu, 6 Apr 2023 16:56:54 -0400 Subject: [PATCH] Add income categories. --- core/models/bill.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/models/bill.py b/core/models/bill.py index bc2c9a1..0fa1ae4 100644 --- a/core/models/bill.py +++ b/core/models/bill.py @@ -78,6 +78,13 @@ class Bill(UUIDModel): (5, "Housing"), (6, "Utilities"), (7, "Other") + (8, "Salary"), + (9, "Interest"), + (10, "Investment"), + (11, "Child benefit"), + (12, "Pension"), + (13, "Income"), + (14, "Other"), ) -- GitLab