You are here

function custom_breadcrumbs_update_7001 in Custom Breadcrumbs 7.2

Change the titles and paths fields to fit longer text.

File

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

Code

function custom_breadcrumbs_update_7001() {
  db_change_field('custom_breadcrumb', 'titles', 'titles', array(
    'type' => 'text',
    'size' => 'medium',
    'not null' => TRUE,
    'description' => 'A return-delimited list of titles for the breadcrumb links.',
  ));
  db_change_field('custom_breadcrumb', 'paths', 'paths', array(
    'type' => 'text',
    'size' => 'medium',
    'not null' => TRUE,
    'description' => 'A return-delimited list of url paths for the breadcrumb links.',
  ));
}