You are here

function webform_update_7322 in Webform 7.3

Add index on {webform_submitted_data}.data.

File

./webform.install, line 859
Webform module install/schema hooks.

Code

function webform_update_7322() {
  db_add_index('webform_submitted_data', 'data', array(
    array(
      'data',
      64,
    ),
  ));
}