You are here

function dynamic_background_node_schema in Dynamic Background 6

Same name and namespace in other branches
  1. 7 modules/dynamic_background_node/dynamic_background_node.install \dynamic_background_node_schema()

Implementation of hook_schema(), which implementes the table dynamic_background_node that holds information about about the pr. node selected image.

Return value

array $schema

File

modules/dynamic_background_node/dynamic_background_node.install, line 16
Installes the database scheme and handles install and uninstall of the module.

Code

function dynamic_background_node_schema() {
  $schema = array();
  $schema['dynamic_background_node'] = array(
    'description' => t(''),
    'fields' => array(
      'nid' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
      ),
      'vid' => array(
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
      ),
      'data' => array(
        'type' => 'text',
        'not null' => TRUE,
      ),
    ),
    'indexes' => array(
      'nid' => array(
        'nid',
      ),
      'vid' => array(
        'vid',
      ),
    ),
  );
  return $schema;
}