You are here

function uc_file_update_7001 in Ubercart 7.3

Increase the length of {uc_file_users}.file_key.

File

uc_file/uc_file.install, line 258
Install, update and uninstall functions for the uc_file module.

Code

function uc_file_update_7001() {
  db_change_field('uc_file_users', 'file_key', 'file_key', array(
    'type' => 'varchar',
    'length' => 64,
    'not null' => TRUE,
    'default' => '',
  ));
}