/**
  * Ensure indexes from potentialy newly activated currency
  *
  * Indexes will be created on the normalizedData part for:
  * - prices (because of potentially added currency)
  *
  * @param CurrencyInterface $currency
  */
 public function ensureIndexesFromCurrency(CurrencyInterface $currency)
 {
     $pricesAttributes = $this->namingUtility->getPricesAttributes();
     foreach ($pricesAttributes as $pricesAttribute) {
         $this->ensureIndexesFromAttribute($pricesAttribute);
     }
 }