laravel creae migration to drop table code example
Example 1: artisan migration rollback
php artisan migrate:rollback
Example 2: migrations required field laravel
$table->string('foo')->nullable(false)->change();
php artisan migrate:rollback
$table->string('foo')->nullable(false)->change();