Add accounts & payees

This commit is contained in:
2021-11-29 22:52:58 +00:00
parent 6df72dc40d
commit 37d19733df
5 changed files with 61 additions and 6 deletions

View File

@ -9,18 +9,32 @@ import (
"github.com/google/uuid"
)
type Account struct {
ID uuid.UUID
BudgetID uuid.UUID
Name string
}
type Budget struct {
Name string
LastModification sql.NullTime
ID uuid.UUID
}
type Transaction struct {
type Payee struct {
ID uuid.UUID
BudgetID uuid.UUID
Date time.Time
Memo sql.NullString
Amount string
Name string
}
type Transaction struct {
ID uuid.UUID
BudgetID uuid.UUID
Date time.Time
Memo sql.NullString
Amount string
AccountID uuid.UUID
PayeeID uuid.NullUUID
}
type User struct {