You are here

function uuid_update_6001 in Universally Unique IDentifier 6

Same name and namespace in other branches
  1. 7 uuid.install \uuid_update_6001()

Create uuid_vocabulary and uuid_term_data tables.

File

./uuid.install, line 101
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;
}