summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-01-05 01:06:21 +0200
committerLV-426 <lv-426@taproot.org.il>2015-01-05 01:11:44 +0200
commit3e4c4dadb4e1915f2244d166931f297136041106 (patch)
treedaf7bde601c79b2def0ba55b24d5fb6c133fd1c9
parentba546ce9c0013bea1ea26b3e6497d8c269f4cb89 (diff)
rm recursive __Parent link on initial commit
-rw-r--r--res/neo4j/reset-db__single_link.cypher2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/neo4j/reset-db__single_link.cypher b/res/neo4j/reset-db__single_link.cypher
index 194d015e..2fd2617c 100644
--- a/res/neo4j/reset-db__single_link.cypher
+++ b/res/neo4j/reset-db__single_link.cypher
@@ -10,7 +10,7 @@ create constraint on (x:Person) assert x.name is unique;
create constraint on (x:Skill) assert x.name is unique;
// init commit block chain
-create (n:__HEAD:__Commit {hash: 'adc83b19e793491b1c6ea0fd8b46cd9f32e592fc', blob: ''}) create (n)-[:__Parent]->(n);
+create (n:__HEAD:__Commit {hash: 'da39a3ee5e6b4b0d3255bfef95601890afd80709', blob: ''});
// Data
create (x:Person {name:'Bob', id: 'p_0', description: 'Bob is ...' });