summaryrefslogtreecommitdiff
path: root/db/query.sql.go
diff options
context:
space:
mode:
Diffstat (limited to 'db/query.sql.go')
-rw-r--r--db/query.sql.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/query.sql.go b/db/query.sql.go
index de68384..7afe159 100644
--- a/db/query.sql.go
+++ b/db/query.sql.go
@@ -20,11 +20,11 @@ INSERT INTO Usage (
`
type EnterUsageParams struct {
- Hardwareaddr int32
+ Hardwareaddr int64
Starttime pgtype.Timestamp
Stoptime pgtype.Timestamp
- Egress int32
- Ingress int32
+ Egress int64
+ Ingress int64
}
func (q *Queries) EnterUsage(ctx context.Context, arg EnterUsageParams) error {