You are here

function views_content_cache_update_6001 in Views content cache 6.2

Update 6001: Create tables for schema version 6001.

File

./views_content_cache.install, line 114
Install file for views content cache.

Code

function views_content_cache_update_6001() {
  $ret = array();
  foreach (views_content_cache_schema_6001() as $name => $table) {
    db_create_table($ret, $name, $table);
  }
  return $ret;
}