You are here

function uuid_update_6003 in Universally Unique IDentifier 7

Same name and namespace in other branches
  1. 6 uuid.install \uuid_update_6003()

Create uuid_comment table.

File

./uuid.install, line 146
Install, update and uninstall functions for the uuid module.

Code

function uuid_update_6003() {
  $ret = array();
  db_create_table($ret, 'uuid_comments', uuid_table_schema('comments', 'cid'));
  return $ret;
}