summaryrefslogtreecommitdiff
path: root/db/models.go
diff options
context:
space:
mode:
Diffstat (limited to 'db/models.go')
-rw-r--r--db/models.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/models.go b/db/models.go
index 83e4051..a6da6bf 100644
--- a/db/models.go
+++ b/db/models.go
@@ -9,9 +9,9 @@ import (
)
type Usage struct {
- Hardwareaddr int32
+ Hardwareaddr int64
Starttime pgtype.Timestamp
Stoptime pgtype.Timestamp
- Egress int32
- Ingress int32
+ Egress int64
+ Ingress int64
}