display archive information in the web UI

This commit is contained in:
Mike Bonnet 2007-09-25 00:10:41 -04:00 committed by Mike Bonnet
parent eb2ab28729
commit 124fad90f0
5 changed files with 221 additions and 13 deletions

View file

@ -659,8 +659,8 @@ CREATE TABLE archivefiles (
filename TEXT NOT NULL,
size INTEGER NOT NULL,
md5sum TEXT,
PRIMARY KEY (filename, archive_id)
PRIMARY KEY (archive_id, filename)
) WITHOUT OIDS;
CREATE INDEX archivefiles_by_archive_id on archivefiles (archive_id);
CREATE INDEX archivefiles_by_filename on archivefiles (filename);
COMMIT WORK;