You are here

function ctools_update_6002 in Chaos Tool Suite (ctools) 6

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

Add the new css cache table.

File

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

Code

function ctools_update_6002() {
  $ret = array();

  // Schema 2 is locked and should not be changed.
  $schema = ctools_schema_2();
  db_create_table($ret, 'ctools_css_cache', $schema['ctools_css_cache']);
  return $ret;
}