laravel db column index array code example
Example 1: laravel dropIndex
Schema::table('geo', function (Blueprint $table) {
$table->dropIndex(['state']); // Drops index 'geo_state_index'
});
Example 2: laravel migration integer
$table->bigInteger('votes');