fix data type

This commit is contained in:
Benjamin Wilson 2025-02-26 09:16:46 -05:00
parent 419eb09853
commit bd5333a725

View File

@ -57,7 +57,7 @@ export class ClientStatisticsService {
CREATE TEMP TABLE temp_stats (
"clientId" UUID,
time BIGINT,
shares INT,
shares NUMERIC,
"acceptedCount" INT,
"updatedAt" TIMESTAMP
) ON COMMIT DROP;