Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Database Seeders

This example demonstrates how to create and run database seeders using WebFiori's seeder system.

What This Example Shows

  • Creating seeder classes that extend AbstractSeeder
  • Implementing seed() method for data insertion
  • Running seeders using SchemaRunner
  • Environment-specific seeding

Files

Running the Example

php example.php

Expected Output

The example will create seeder classes, run them to populate the database with initial data, and show the seeded records.

Related Examples