DevMcC / laravel-partial-seeder by DevMcC

Only seed what you haven't seeded yet.
470
3
1
Package Data
Maintainer Username: DevMcC
Maintainer Contact: sinbox.c@gmail.com (DevMcC)
Package Create Date: 2017-06-08
Package Last Update: 2018-08-14
Home Page: https://packagist.org/packages/devmcc/laravel-partial-seeder
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:04:12
Package Statistics
Total Downloads: 470
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 3
Total Watchers: 1
Total Forks: 4
Total Open Issues: 0

LaravelPartialSeeder

Only seed what you haven't seeded yet.

About

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.

Installation

Install this package with the following command:

composer require devmcc/laravel-partial-seeder

ServiceProvider

Add the following line in providers, in the file config/app.php:

DevMcC\LaravelPartialSeeder\ServiceProvider::class,

Commands

The following is a documentation about all available commands:

Install

Usage

php artisan prtl-seeder:install [options]

Description

Creates the partial_seeds_history table

Options

Standard Artisan command options.

Status

Usage

php artisan prtl-seeder:status [options]

Description

Show the status of each partial seeder

Options

Standard Artisan command options.

Seed

Usage

php artisan prtl-seeder:seed [options]

Description

Seed the database with history controlled records

Options

Standard Artisan command options.

--database[=DATABASE]

The database connection to seed

--force

Force the operation to run when in production

Make

Usage

php artisan make:prtl-seeder <name> [options]

Description

Create a new partial seeder class

Arguments

The name of the class

Options

Standard Artisan command options.

Note

Note #1

The created seeder is added into the partial_seeds directory, in the database directory (database).