You are here

function simplesitemap_update_8101 in Simple XML sitemap 8

Update: Altering the {simplesitemap} language_code table field to hold longer strings.

File

./simplesitemap.install, line 89
Module install and update procedures.

Code

function simplesitemap_update_8101() {
  db_change_field('simplesitemap', 'language_code', 'language_code', array(
    'type' => 'varchar',
    'not null' => TRUE,
    'length' => 12,
  ));
}