function feeds_tamper_update_6002 in Feeds Tamper 6
Add description field to feeds_tamper table.
File
- ./
feeds_tamper.install, line 117 - Schema definitions install/update/uninstall hooks.
Code
function feeds_tamper_update_6002(&$sandbox) {
$ret = array();
$spec = array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'Description of this plugin.',
);
db_add_field($ret, 'feeds_tamper', 'description', $spec);
return $ret;
}