getTable('talk_attendees'); if ($table->hasIndex('ta_room')) { $table->dropIndex('ta_room'); } // Remove redundant index talk_bots_convo_id from talk_bots_conversation $table = $schema->getTable('talk_bots_conversation'); if ($table->hasIndex('talk_bots_convo_id')) { $table->dropIndex('talk_bots_convo_id'); } return $schema; } }