Only seed what you haven't seeded yet.
This packages extends the seeding functionality with the addition of history control. This allows you to only run the seeders that you haven't run yet.
Install this package with the following command:
composer require 10pearls/laravel-partial-seeder
Add the following line in providers
, in the file config/app.php
:
DevMcC\LaravelPartialSeeder\ServiceProvider::class,
The following is a documentation about all available commands:
php artisan prtl-seeder:install [options]
Creates the partial_seeds_history
table
Standard Artisan command options.
php artisan prtl-seeder:status [options]
Show the status of each partial seeder
Standard Artisan command options.
php artisan prtl-seeder:seed [options]
Seed the database with history controlled records
Standard Artisan command options.
The database connection to seed
Force the operation to run when in production
php artisan make:prtl-seeder <name> [options]
Create a new partial seeder class
The name of the class
Standard Artisan command options.
The created seeder is added into the partial_seeds
directory, in the database directory (database
).