You are here

function backup_migrate_update_7202 in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 backup_migrate.install \backup_migrate_update_7202()
  2. 7.3 backup_migrate.install \backup_migrate_update_7202()
  3. 7.2 backup_migrate.install \backup_migrate_update_7202()

Change the filename field to support 255 characters.

File

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

Code

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