function uuid_update_6003 in Universally Unique IDentifier 6
Same name and namespace in other branches
- 7 uuid.install \uuid_update_6003()
Create uuid_comment table.
File
- ./
uuid.install, line 128 - 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;
}