truncgil/migrate-from-date

A Laravel package to migrate migrations from a specific date

v1.0.0 2024-06-26 10:10 UTC

This package is auto-updated.

Last update: 2025-04-26 12:09:18 UTC


README

A Laravel package to migrate migrations from a specific date.

Installation

You can install the package via Composer:

composer require truncgil/migrate-from-date

Usage

This package provides an Artisan command to migrate migrations from a specific date.

Run the Command

You can run the command as follows:

php artisan migrate:from-date 2024_06_23

Service Provider

The package automatically registers its service provider using Laravel's auto-discovery feature. However, if you need to register it manually, you can add the following to your config/app.php file:

'providers' => [
    // Other service providers...

    Truncgil\MigrateFromDate\MigrateFromDateServiceProvider::class,
],

Author

License

This package is open-source software licensed under the MIT license.