function aggregator_update_7000
Add hash column to aggregator_feed table.
Related topics
Archivo
- drupal-7.x/
modules/ aggregator/ aggregator.install, line 283 - Install, update and uninstall functions for the aggregator module.
Código
function aggregator_update_7000() {
db_add_field('aggregator_feed', 'hash', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''));
}