function aggregator_update_7000

Add hash column to aggregator_feed table.

Related topics

File

modules/aggregator/aggregator.install, line 284

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.