diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-07-05 21:43:56 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-07-06 12:23:02 +0530 |
commit | 2f0483eb34ae51dc0dc241409342db021b995856 (patch) | |
tree | 0b3232d6881075fc75acb70482d7438eaba6a911 /db/query.sql.go | |
parent | 4b44400700d0fb12cc7d86ecc020a30d78aa74c6 (diff) |
bpf: use hwaddr for identification
Diffstat (limited to 'db/query.sql.go')
-rw-r--r-- | db/query.sql.go | 6 |
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 { |