change seed data for better user comprehension

This commit is contained in:
Yisroel Baum 2026-04-20 09:40:31 +03:00
parent 12fd5a88b6
commit 0d44d2c090
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -3,26 +3,26 @@
$texts = [
[
'id' => 0,
'name' => 'test text',
'name' => 'Tanach',
],
];
$nodes = [
[
'id' => 0,
'title' => 'Chapter 1',
'title' => 'Tanach',
'textId' => 0,
'parentNodeId' => null,
],
[
'id' => 1,
'title' => 'Section 1.1',
'title' => 'Torah',
'textId' => 0,
'parentNodeId' => 0,
],
[
'id' => 2,
'title' => 'Page 1.1.1',
'title' => 'Bereishis',
'textId' => 0,
'parentNodeId' => 1,
],