You are here

function invoice_update_7002 in Invoice 7

Implements hook_update_N()

File

./invoice.install, line 221

Code

function invoice_update_7002() {
  db_add_field('invoice_templates', 'api_username', array(
    'type' => 'varchar',
    'length' => 100,
    'not null' => FALSE,
  ));
  return t('Successfully added the api template column "api_username".');
}