function node_gallery_update_6201 in Node Gallery 6.3
Same name and namespace in other branches
- 6.2 node_gallery.install \node_gallery_update_6201()
File
- ./
node_gallery.install, line 714 - Install, update and uninstall functions for the node_gallery module.
Code
function node_gallery_update_6201() {
$ret = array();
db_drop_primary_key($ret, 'node_galleries');
db_add_primary_key($ret, 'node_galleries', array(
'nid',
));
return $ret;
}