function aggregator_update_7000 in Drupal 7
Add hash column to aggregator_feed table.
Related topics
File
- modules/
aggregator/ aggregator.install, line 284 - 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' => '',
));
}