Matt Housh 3cbee22952
portdb: added uncommitted changes including cacher python rewrite
This should get the repo in sync with the last live versions of the
cacher and index on the previous crux.nu server.
2024-03-02 14:13:42 -06:00

13 lines
244 B
SQL

CREATE TABLE collections (
collid integer primary key,
collname varchar,
maintainer varchar,
colltype varchar,
url varchar,
pubkey varchar);
CREATE TABLE ports (
id integer primary key,
portname varchar,
collection varchar);