You are here

function views_schema_6013 in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 views.install \views_schema_6013()
  2. 7.3 views.install \views_schema_6013()

File

./views.install, line 493
views.install Contains install and update functions for Views.

Code

function views_schema_6013() {
  $schema = views_schema(__FUNCTION__);
  $schema['views_view']['fields']['core'] = array(
    'type' => 'int',
    'default' => 0,
    'description' => 'Stores the drupal core version of the view.',
  );
  return $schema;
}