You are here

function custom_breadcrumbs_update_6202 in Custom Breadcrumbs 6.2

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

Adds name field for improved organization of breadcrumbs

File

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

Code

function custom_breadcrumbs_update_6202() {
  $ret = array();
  db_add_field($ret, 'custom_breadcrumb', 'name', array(
    'type' => 'varchar',
    'length' => 128,
    'NOT NULL' => FALSE,
    'description' => 'An optional name for the custom breadcrumb.',
  ));
  return $ret;
}