function tableofcontents_update_6000 in Table of Contents 7
Same name and namespace in other branches
- 6.3 tableofcontents.install \tableofcontents_update_6000()
Implementation of hook_update_#()
File
- ./
tableofcontents.install, line 50 - tableofcontents.install
Code
function tableofcontents_update_6000() {
$ret = array();
$schema = tableofcontents_schema();
db_create_table($ret, 'tableofcontents_node_toc', $schema['tableofcontents_node_toc']);
return $ret;
}