Matt Housh
3cbee22952
This should get the repo in sync with the last live versions of the cacher and index on the previous crux.nu server.
13 lines
244 B
SQL
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);
|