You are here

function ctools_update_6004 in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 ctools.install \ctools_update_6004()

Add primary key to the ctools_object_cache table.

File

./ctools.install, line 203
Contains install and update functions for ctools.

Code

function ctools_update_6004() {
  $ret = array();
  db_add_primary_key($ret, 'ctools_object_cache', array(
    'sid',
    'obj',
    'name',
  ));
  db_drop_index($ret, 'ctools_object_cache', 'sid_obj_name');
  return $ret;
}