yii\mongodb\Collection::dropAllIndexes PHP Méthode

dropAllIndexes() public méthode

Drops all indexes for this collection.
public dropAllIndexes ( ) : integer
Résultat integer count of dropped indexes.
    public function dropAllIndexes()
    {
        $result = $this->database->createCommand()->dropIndexes($this->name, '*');
        return $result['nIndexesWas'];
    }