| Package Data | |
|---|---|
| Maintainer Username: | MCMatters |
| Maintainer Contact: | dima.matters@gmail.com (Dmitry Borzyonok) |
| Package Create Date: | 2017-06-14 |
| Package Last Update: | 2020-08-27 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:10:48 |
| Package Statistics | |
|---|---|
| Total Downloads: | 1,066 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Package with laravel database commands.
composer require mcmatters/laravel-db-commands
If you don't use package discovering feature, then just include the service provider within your config/app.php file.
'providers' => [
McMatters\LaravelDbCommands\ServiceProvider::class,
]
Available commands:
php artisan db:drop-tables — drops all tables.php artisan migrate:single {"file" or "class"} — migrate single migration by file or class name.php artisan migrate:drop-single {"file" or "class"} — drop single migration by file or class name.