You are here

function backup_migrate_update_2006 in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 6.2 backup_migrate.install \backup_migrate_update_2006()

Change the filename field to support 255 characters.

File

./backup_migrate.install, line 474
Install hooks for Backup and Migrate.

Code

function backup_migrate_update_2006() {
  $ret = array();
  db_change_field($ret, 'backup_migrate_profiles', 'filename', 'filename', array(
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
  ));
  return $ret;
}