Merge schemas into one file

This commit is contained in:
2021-12-02 10:09:28 +00:00
parent 37d19733df
commit 4d1b883974
12 changed files with 128 additions and 135 deletions

View File

@ -16,9 +16,9 @@ type Account struct {
}
type Budget struct {
ID uuid.UUID
Name string
LastModification sql.NullTime
ID uuid.UUID
}
type Payee struct {
@ -29,7 +29,6 @@ type Payee struct {
type Transaction struct {
ID uuid.UUID
BudgetID uuid.UUID
Date time.Time
Memo sql.NullString
Amount string
@ -38,10 +37,10 @@ type Transaction struct {
}
type User struct {
ID uuid.UUID
Email string
Name string
Password string
ID uuid.UUID
}
type UserBudget struct {