Add on_budget column to accounts

This commit is contained in:
2021-12-07 20:52:53 +00:00
parent 915379f5cb
commit e3f3dc6748
3 changed files with 27 additions and 6 deletions

View File

@ -13,6 +13,7 @@ type Account struct {
ID uuid.UUID
BudgetID uuid.UUID
Name string
OnBudget bool
}
type Assignment struct {