// Code generated by sqlc. DO NOT EDIT. package postgres import ( "database/sql" "time" "github.com/google/uuid" "github.com/jackc/pgtype" ) type Account struct { ID uuid.UUID BudgetID uuid.UUID Name string } type Budget struct { ID uuid.UUID Name string LastModification sql.NullTime } type Payee struct { ID uuid.UUID BudgetID uuid.UUID Name string } type Transaction struct { ID uuid.UUID Date time.Time Memo string Amount pgtype.Numeric AccountID uuid.UUID PayeeID uuid.NullUUID } type User struct { ID uuid.UUID Email string Name string Password string } type UserBudget struct { UserID uuid.UUID BudgetID uuid.UUID }