* Get rid of the `netsources' database.

* Rename the `refs' database to `hash2paths'.
This commit is contained in:
Eelco Dolstra 2003-07-08 08:35:06 +00:00
parent be96c2189c
commit a5a90f501e
3 changed files with 10 additions and 23 deletions

View file

@ -2,9 +2,8 @@
#include "db.hh"
string dbRefs = "refs";
string dbHash2Paths = "hash2paths";
string dbSuccessors = "successors";
string dbNetSources = "netsources";
string nixStore = "/UNINIT";
string nixLogDir = "/UNINIT";
@ -13,7 +12,6 @@ string nixDB = "/UNINIT";
void initDB()
{
createDB(nixDB, dbRefs);
createDB(nixDB, dbHash2Paths);
createDB(nixDB, dbSuccessors);
createDB(nixDB, dbNetSources);
}