From 0d44d2c0901110b89c3a63e0d602364da11088c7 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Mon, 20 Apr 2026 09:40:31 +0300 Subject: [PATCH] change seed data for better user comprehension --- data/seedDb.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/seedDb.php b/data/seedDb.php index d695258..3206372 100644 --- a/data/seedDb.php +++ b/data/seedDb.php @@ -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, ],