Merge schemas into one file
This commit is contained in:
@ -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 {
|
||||
|
Reference in New Issue
Block a user