function page_theme_update_6102 in Page Theme 7.2
Same name and namespace in other branches
- 6 page_theme.install \page_theme_update_6102()
- 7 page_theme.install \page_theme_update_6102()
Rename field preview to editpage.
File
- ./
page_theme.install, line 146 - Install, update and uninstall functions for the page_theme module.
Code
function page_theme_update_6102() {
db_change_field('page_theme', 'preview', 'editpage', array(
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
));
}