Answers for "php laravel index php remove"

PHP
1

laravel delete index

Schema::table('geo', function (Blueprint $table) {
    $table->dropIndex(['state']); // Drops index 'geo_state_index'
});
Posted by: Guest on July-28-2020

Browse Popular Code Answers by Language