Skip to content

Commit 8a256a2

Browse files
committed
docs: fix section title level
1 parent 1739d51 commit 8a256a2

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

user_guide_src/source/dbmgmt/seeds.rst

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ stored within the **app/Database/Seeds** directory. The name of the file must ma
1414

1515
.. literalinclude:: seeds/001.php
1616

17+
***************
1718
Nesting Seeders
18-
===============
19+
***************
1920

2021
Seeders can call other seeders, with the **call()** method. This allows you to easily organize a central seeder,
2122
but organize the tasks into separate seeder files:
@@ -27,23 +28,25 @@ anywhere the autoloader can find them. This is great for more modular code bases
2728

2829
.. literalinclude:: seeds/003.php
2930

31+
*************
3032
Using Seeders
31-
=============
33+
*************
3234

3335
You can grab a copy of the main seeder through the database config class:
3436

3537
.. literalinclude:: seeds/004.php
3638

3739
Command Line Seeding
38-
--------------------
40+
====================
3941

4042
You can also seed data from the command line, as part of the Migrations CLI tools, if you don't want to create
4143
a dedicated controller::
4244

4345
> php spark db:seed TestSeeder
4446

45-
Creating Seed Files
46-
-------------------
47+
*********************
48+
Creating Seeder Files
49+
*********************
4750

4851
Using the command line, you can easily generate seed files.
4952

0 commit comments

Comments
 (0)