function system_update_7068

Update {url_alias}.language description.

Related topics

File

drupal/modules/system/system.install, line 3099
Install, update and uninstall functions for the system module.

Code

function system_update_7068() {
  $spec = array(
    'description' => "The language this alias is for; if 'und', the alias will be used for unknown languages. Each Drupal path can have an alias for each supported language.",
    'type' => 'varchar',
    'length' => 12,
    'not null' => TRUE,
    'default' => '',
  );
  db_change_field('url_alias', 'language', 'language', $spec);
}