Remove the logfile and logSize columns from the database

It's pointless to store these, since Nix knows where the logs are.
Also handle (in fact require) Nix's new log storage scheme.  Also some
cleanups in the build page.
This commit is contained in:
Eelco Dolstra
2013-01-22 22:48:02 +01:00
parent 36c2bf2f52
commit 30e5185acf
30 changed files with 299 additions and 229 deletions

View File

@ -178,7 +178,6 @@ create table Builds (
errorMsg text, -- error message in case of a Nix failure
logSize bigint,
size bigint,
closureSize bigint,
@ -201,8 +200,6 @@ create table BuildSteps (
drvPath text,
outPath text,
logfile text,
busy integer not null,
status integer, -- 0 = success, 1 = failed