Extract package
This commit is contained in:
@ -7,6 +7,7 @@ import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"git.javil.eu/jacob1123/budgeteer/postgres/numeric"
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
@ -21,7 +22,7 @@ RETURNING id, category_id, date, memo, amount
|
||||
|
||||
type CreateAssignmentParams struct {
|
||||
Date time.Time
|
||||
Amount Numeric
|
||||
Amount numeric.Numeric
|
||||
CategoryID uuid.UUID
|
||||
}
|
||||
|
||||
@ -65,7 +66,7 @@ type GetAllAssignmentsRow struct {
|
||||
Date time.Time
|
||||
Category string
|
||||
Group string
|
||||
Amount Numeric
|
||||
Amount numeric.Numeric
|
||||
}
|
||||
|
||||
func (q *Queries) GetAllAssignments(ctx context.Context, budgetID uuid.UUID) ([]GetAllAssignmentsRow, error) {
|
||||
|
Reference in New Issue
Block a user