function page_theme_update_7000 in Page Theme 7
Same name and namespace in other branches
- 7.2 page_theme.install \page_theme_update_7000()
Change the weight column to normal int.
File
- ./
page_theme.install, line 135 - Install, update and uninstall functions for the page_theme module.
Code
function page_theme_update_7000() {
db_drop_index('page_theme', 'list');
db_change_field('page_theme', 'weight', 'weight', array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
), array(
'indexes' => array(
'list' => array(
'theme',
'weight',
),
),
));
}