truncgil / migrate-from-date
A Laravel package to migrate migrations from a specific date
v1.0.0
2024-06-26 10:10 UTC
Requires
- php: ^7.3|^8.0
- illuminate/support: ^6.0|^7.0|^8.0|^9.0|^10.0
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
- Ümit Tunç - umitreva@gmail.com
License
This package is open-source software licensed under the MIT license.