You are here

function custom_breadcrumbs_update_6202 in Custom Breadcrumbs 7.2

Same name and namespace in other branches
  1. 6.2 custom_breadcrumbs.install \custom_breadcrumbs_update_6202()

Adds name field for improved organization of breadcrumbs.

File

./custom_breadcrumbs.install, line 186
Install file for the custom_breadcrumbs module.

Code

function custom_breadcrumbs_update_6202() {
  db_add_field('custom_breadcrumb', 'name', array(
    'type' => 'varchar',
    'length' => 128,
    'NOT NULL' => FALSE,
    'description' => 'An optional name for the custom breadcrumb.',
  ));
  return t('Added name field for improved organization of custom breadcrumbs.');
}