From 203a9b9ad74f396bb41b33f12f8b4b08c074a7a6 Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Sat, 10 Dec 2011 14:48:33 -0500 Subject: [PATCH] make filesize field for buildproducts a bigint to support big files --- src/sql/hydra.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/hydra.sql b/src/sql/hydra.sql index 2432cf4b..2993c2dd 100644 --- a/src/sql/hydra.sql +++ b/src/sql/hydra.sql @@ -283,7 +283,7 @@ create table BuildProducts ( productnr integer not null, type text not null, -- "nix-build", "file", "doc", "report", ... subtype text not null, -- "source-dist", "rpm", ... - fileSize integer, + fileSize bigint, sha1hash text, sha256hash text, path text,