php acreate migration code example
Example 1: laravel drop table migration
Schema::drop('users');
Schema::dropIfExists('users');
Example 2: laravel make migration
php artisan make:migration CreateUsersTable
Schema::drop('users');
Schema::dropIfExists('users');
php artisan make:migration CreateUsersTable