26 lines
343 B
Go
26 lines
343 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
|
|
package postgres
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
type Budget struct {
|
|
ID string
|
|
Name string
|
|
LastModification sql.NullTime
|
|
}
|
|
|
|
type User struct {
|
|
ID string
|
|
Email string
|
|
Name string
|
|
Password string
|
|
}
|
|
|
|
type UserBudget struct {
|
|
UserID string
|
|
BudgetID string
|
|
}
|