TODO ==== * Implement autosigning, see ftpmaster_autosigning on ftp-master host in text/. * Check TODO.old and move still-valid/useful entries over here. * database table "binaries" contains a column 'type TEXT NOT NULL'. This should be made a FK on override_type, as it only contains deb/udeb strings. - sql query to do the db work for it: ALTER TABLE binaries ADD COLUMN new_type INT4 REFERENCES override_type(id); UPDATE BINARIES SET new_type = 7 WHERE type = 'deb'; UPDATE BINARIES SET new_type = 8 WHERE type = 'udeb'; ALTER TABLE binaries DROP COLUMN type; ALTER TABLE binaries RENAME COLUMN new_type TO type; - needs updateX.py written and then the rest of the code changed to deal with it. * Checkout SQL Alchemy and probably use that for our database layer.