You are here

function redirect_update_7103 in Redirect 7.2

Same name and namespace in other branches
  1. 7 redirect.install \redirect_update_7103()

Change fields 'redirect_options', 'source_options' to blob type.

File

./redirect.install, line 466
Install, update and uninstall functions for the redirect module.

Code

function redirect_update_7103() {
  db_change_field('redirect', 'redirect_options', 'redirect_options', array(
    'type' => 'blob',
  ));
  db_change_field('redirect', 'source_options', 'source_options', array(
    'type' => 'blob',
  ));
}