You are here

function fieldable_panels_panes_update_7109 in Fieldable Panels Panes (FPP) 7

Update the length of the 'name' field in {fieldable_panels_pane}.

File

./fieldable_panels_panes.install, line 413
Fieldable Panels Panes install file.

Code

function fieldable_panels_panes_update_7109() {
  db_change_field('fieldable_panels_pane_type', 'name', 'name', array(
    'description' => 'The machine-readable name of this type.',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}