function aggregator_update_7000

7.x aggregator.install aggregator_update_7000()

Add hash column to aggregator_feed table.

Related topics

File

drupal-7.x/modules/aggregator/aggregator.install, line 283
Install, update and uninstall functions for the aggregator module.

Code

function aggregator_update_7000() {
  db_add_field('aggregator_feed', 'hash', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''));
}