You are here

views_oai_pmh.install in Views OAI-PMH 7.3

Install, uninstall, and schema functions for the module.

File

views_oai_pmh.install
View source
<?php

/**
 * @file
 * Install, uninstall, and schema functions for the module.
 */

/**
 * Implements hook_schema().
 */
function views_oai_pmh_schema() {
  $schema = array();
  $schema['cache_views_oai_pmh'] = array(
    'description' => 'Cache table for caching resumption tokens.',
    'fields' => array(
      'cid' => array(
        'description' => 'Primary Key: Unique cache ID.',
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
        'default' => '',
      ),
      'data' => array(
        'description' => 'A collection of data to cache.',
        'type' => 'blob',
        'not null' => FALSE,
        'size' => 'big',
      ),
      'expire' => array(
        'description' => 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
      ),
      'created' => array(
        'description' => 'A Unix timestamp indicating when the cache entry was created.',
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
      ),
      'serialized' => array(
        'description' => 'A flag to indicate whether content is serialized (1) or not (0).',
        'type' => 'int',
        'size' => 'small',
        'not null' => TRUE,
        'default' => 0,
      ),
    ),
    'indexes' => array(
      'expire' => array(
        'expire',
      ),
    ),
    'primary key' => array(
      'cid',
    ),
  );
  return $schema;
}

Functions

Namesort descending Description
views_oai_pmh_schema Implements hook_schema().