aggregator_update_7000

Definition

aggregator_update_7000()
modules/aggregator/aggregator.install, line 263

Description

Add hash column to aggregator_feed table.

Code

<?php
function aggregator_update_7000() {
  $ret = array();
  db_add_field($ret, 'aggregator_feed', 'hash', array('type' => 'varchar', 'length' => 32, 'not null' => TRUE, 'default' => ''));
  return $ret;
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.