You are here

function feedapi_update_6102 in FeedAPI 6

File

./feedapi.install, line 144
Install file for FeedAPI module.

Code

function feedapi_update_6102() {
  $ret = array();
  db_change_field($ret, 'feedapi', 'url', 'url', array(
    'description' => 'The URL of the feed',
    'type' => 'text',
  ));
  db_change_field($ret, 'feedapi', 'link', 'link', array(
    'type' => 'text',
  ));
  return $ret;
}