You are here

function beautytips_manager_update_7002 in BeautyTips 7.2

Extend the length of the element field.

File

./beautytips_manager.install, line 266
Code related to the installation and uninstallation of custom beautytip and style administration.

Code

function beautytips_manager_update_7002() {
  db_change_field('beautytips_custom_tips', 'element', 'element', [
    'type' => 'varchar',
    'length' => 255,
    'description' => t('The element to which this beautytips will be applied.'),
    'not null' => TRUE,
  ]);
}