function homebox_update_6000 in Homebox 6.3
Same name and namespace in other branches
- 6.2 homebox.install \homebox_update_6000()
Add {homebox_users} primary key.
File
- ./
homebox.install, line 56 - The install file for Homebox allows the module to install (and uninstall) itself. This is required as this module uses its own table.
Code
function homebox_update_6000() {
$return = array();
db_add_primary_key($return, 'homebox_users', array(
'uid',
'name',
));
return $return;
}