function system_update_7068

Update {url_alias}.language description.

Related topics

File

modules/system/system.install, line 3149

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);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.