1 2 3 4 5 6 7
| Schema::connection('')->table($tableName, function (Blueprint $table) { $sm = Schema::getConnection()->getDoctrineSchemaManager(); $indexesFound = $sm->listTableIndexes('table');
if(array_key_exists("index_name", $indexesFound)) $table->dropUnique("index_name"); });
|