Projet

Général

Profil

Révision 4444412d

Ajouté par Julien Enselme il y a presque 10 ans

Update drupal 7.27 -> 7.28

Voir les différences:

drupal7/modules/aggregator/aggregator.install
260 260
    'primary key' => array('iid'),
261 261
    'indexes' => array(
262 262
      'fid' => array('fid'),
263
      'timestamp' => array('timestamp'),
263 264
    ),
264 265
    'foreign keys' => array(
265 266
      'aggregator_feed' => array(
......
325 326
  db_add_index('aggregator_feed', 'url', array(array('url', 255)));
326 327
}
327 328

  
329
/**
330
 * Add index on timestamp.
331
 */
332
function aggregator_update_7004() {
333
  if (!db_index_exists('aggregator_item', 'timestamp')) {
334
    db_add_index('aggregator_item', 'timestamp', array('timestamp'));
335
  }
336
}
337

  
328 338
/**
329 339
 * @} End of "addtogroup updates-7.x-extra"
330 340
 */

Formats disponibles : Unified diff