how to index a table laravel code example
Example 1: create migration table in php
php artisan make:migration create_users_table
Example 2: laravel drop table migration
Schema::drop('users');
Schema::dropIfExists('users');
php artisan make:migration create_users_table
Schema::drop('users');
Schema::dropIfExists('users');