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;
}
?> 