mcmatters/laravel-db-commands is a Laravel package.
It currently has 1 GitHub stars and 1.066 downloads on Packagist (latest version v1.2.1).
Install it with composer require mcmatters/laravel-db-commands.
Discover more Laravel packages by mcmatters
or browse all Laravel packages to compare alternatives.
Last updated
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.