All checks were successful
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 1m25s
21 lines
362 B
Go
21 lines
362 B
Go
package budget
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Budget struct {
|
|
Id uuid.UUID `db:"id"`
|
|
UserId uuid.UUID `db:"user_id"`
|
|
|
|
Name string `db:"name"`
|
|
Value int64 `db:"value"`
|
|
|
|
CreatedAt time.Time `db:"created_at"`
|
|
CreatedBy uuid.UUID `db:"created_by"`
|
|
UpdatedAt *time.Time `db:"updated_at"`
|
|
UpdatedBy *uuid.UUID `db:"updated_by"`
|
|
}
|