store used data transfer as big integer

we originally stored these values as MB but since we use bytes now,
an integer field is not enough.

Fixes #1575

Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
Nicola Murino
2024-04-02 18:38:22 +02:00
parent 70cb71acfa
commit ff48386cc8
5 changed files with 88 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ import (
)
const (
sqlDatabaseVersion = 28
sqlDatabaseVersion = 29
defaultSQLQueryTimeout = 10 * time.Second
longSQLQueryTimeout = 60 * time.Second
)