function views_schema_0

Provide an initial schema.

See also

UpdateModuleHandler::enable().

File

drupal/core/modules/views/views.install, line 22
Contains install and update functions for Views.

Code

function views_schema_0() {
  module_load_install('system');

  // Add the cache_views_info and cache_views_results tables.
  $cache_schema = system_schema_cache_8007();
  $schema['cache_views_info'] = $cache_schema;
  $schema['cache_views_results'] = $cache_schema;
  return $schema;
}