laravel dat migration documents code example
Example 1: create laravel migration
php artisan make:migration create_users_table
Example 2: laravel migration drop foreign keys
$table->dropIndex(['state']); // Drops index 'geo_state_index'
php artisan make:migration create_users_table
$table->dropIndex(['state']); // Drops index 'geo_state_index'