Parent Directory
|
Revision Log
web/*: Fixed web scripts
TODO: rt_affects_* tristate: won't do
PREPARE/EXECUTE for bugs: done
access information on wiki: done
two new TODOs
orpahend_packages: fixed typo
upload_history: added two new fields
| 1 | CREATE TABLE %(table)s |
| 2 | (id serial, package text, version text, date timestamp with time zone, |
| 3 | changed_by text, maintainer text, nmu boolean, signed_by text, key_id text, |
| 4 | closes int); |
| 5 | |
| 6 | CREATE TABLE %(table)s_architecture |
| 7 | (id int, architecture text, |
| 8 | PRIMARY KEY (id, architecture)); |
| 9 | |
| 10 | |
| 11 | GRANT SELECT ON %(table)s TO PUBLIC; |
| 12 | GRANT SELECT ON %(table)s_architecture TO PUBLIC; |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |