You are here

function ds_update_7202 in Display Suite 7.2

Increase the label storage length to 128.

File

./ds.install, line 287
Display Suite install file.

Code

function ds_update_7202() {
  db_change_field('ds_fields', 'label', 'label', array(
    'description' => 'The label of the field.',
    'type' => 'varchar',
    'length' => 128,
    'not null' => TRUE,
    'default' => '',
  ));
}