You are here

function iframe_update_7101 in Iframe 7

Update 7101 : adjust or synchronize length of "url" field for all users

File

./iframe.install, line 145
Install, update and uninstall functions for the text module.

Code

function iframe_update_7101() {
  $spec = array(
    'type' => 'varchar',
    'length' => 1024,
    'not null' => FALSE,
    'sortable' => TRUE,
  );
  iframe_addorchange_column('url', $spec);
}