You are here

function mailhandler_update_6001 in Mailhandler 7

Same name and namespace in other branches
  1. 6 mailhandler.install \mailhandler_update_6001()

File

./mailhandler.install, line 152

Code

function mailhandler_update_6001() {
  $ret = array();
  db_add_field($ret, 'mailhandler', 'authentication', array(
    'type' => 'varchar',
    'not null' => TRUE,
    'length' => '255',
    'default' => 'mailhandler_default',
  ));
  return $ret;
}