use of nl.knaw.huygens.timbuctoo.server.databasemigration.DatabaseMigrator in project timbuctoo by HuygensING.
the class TinkerPopGraphManager method start.
@Override
public void start() throws Exception {
synchronized (graphWaitList) {
initGraphDatabaseService();
this.graph = Neo4jGraph.open(new Neo4jGraphAPIImpl(graphDatabase));
new DatabaseMigrator(this, migrations).execute();
callWaiters();
}
}
Aggregations