a5a90f501e
* Rename the `refs' database to `hash2paths'.
17 lines
289 B
C++
17 lines
289 B
C++
#include "globals.hh"
|
|
#include "db.hh"
|
|
|
|
|
|
string dbHash2Paths = "hash2paths";
|
|
string dbSuccessors = "successors";
|
|
|
|
string nixStore = "/UNINIT";
|
|
string nixLogDir = "/UNINIT";
|
|
string nixDB = "/UNINIT";
|
|
|
|
|
|
void initDB()
|
|
{
|
|
createDB(nixDB, dbHash2Paths);
|
|
createDB(nixDB, dbSuccessors);
|
|
}
|