function uuid_update_6001 in Universally Unique IDentifier 7
Same name and namespace in other branches
- 6 uuid.install \uuid_update_6001()
Create uuid_vocabulary and uuid_term_data tables.
File
- ./
uuid.install, line 120 - Install, update and uninstall functions for the uuid module.
Code
function uuid_update_6001() {
$ret = array();
db_create_table($ret, 'uuid_vocabulary', uuid_table_schema('vocabulary', 'vid'));
db_create_table($ret, 'uuid_term_data', uuid_table_schema('term_data', 'tid'));
return $ret;
}