2007-10-05 16:07:22 +00:00
<?php
// $Id$
/**
* Implementation of hook_schema().
*/
function node_schema() {
$schema['node'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('The base table for nodes.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'nid' => array(
'description' => t('The primary identifier for a node.'),
'type' => 'serial',
'unsigned' => TRUE,
2008-03-15 12:31:29 +00:00
'not null' => TRUE,
),
2007-10-10 11:39:35 +00:00
'vid' => array(
'description' => t('The current {node_revisions}.vid version identifier.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'type' => array(
2007-11-04 14:33:07 +00:00
'description' => t('The {node_type}.type of this node.'),
2007-10-10 11:39:35 +00:00
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'language' => array(
'description' => t('The {languages}.language of this node.'),
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'title' => array(
2008-04-15 08:39:03 +00:00
'description' => t('The title of this node, always treated as non-markup plain text.'),
2007-10-10 11:39:35 +00:00
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'uid' => array(
'description' => t('The {users}.uid that owns this node; initially, this is the user that created it.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'status' => array(
'description' => t('Boolean indicating whether the node is published (visible to non-administrators).'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 1,
),
2007-10-10 11:39:35 +00:00
'created' => array(
'description' => t('The Unix timestamp when the node was created.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'changed' => array(
'description' => t('The Unix timestamp when the node was most recently saved.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'comment' => array(
'description' => t('Whether comments are allowed on this node: 0 = no, 1 = read only, 2 = read/write.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'promote' => array(
2008-04-15 08:39:03 +00:00
'description' => t('Boolean indicating whether the node should be displayed on the front page.'),
2007-10-10 11:39:35 +00:00
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'moderate' => array(
'description' => t('Previously, a boolean indicating whether the node was "in moderation"; mostly no longer used.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'sticky' => array(
'description' => t('Boolean indicating whether the node should be displayed at the top of lists in which it appears.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'tnid' => array(
'description' => t('The translation set id for this node, which equals the node id of the source post in each set.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'translate' => array(
'description' => t('A boolean indicating whether this translation page needs to be updated.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
2007-10-10 11:39:35 +00:00
),
2008-03-15 12:31:29 +00:00
),
2007-10-05 16:07:22 +00:00
'indexes' => array(
'node_changed' => array('changed'),
'node_created' => array('created'),
'node_moderate' => array('moderate'),
'node_promote_status' => array('promote', 'status'),
'node_status_type' => array('status', 'type', 'nid'),
'node_title_type' => array('title', array('type', 4)),
'node_type' => array(array('type', 4)),
'uid' => array('uid'),
'tnid' => array('tnid'),
'translate' => array('translate'),
2008-03-15 12:31:29 +00:00
),
2007-10-05 16:07:22 +00:00
'unique keys' => array(
2008-03-15 12:31:29 +00:00
'vid' => array('vid'),
),
2007-10-05 16:07:22 +00:00
'primary key' => array('nid'),
2008-03-15 12:31:29 +00:00
);
2007-10-05 16:07:22 +00:00
$schema['node_access'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Identifies which realm/grant pairs a user must possess in order to view, update, or delete specific nodes.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'nid' => array(
'description' => t('The {node}.nid this record affects.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'gid' => array(
'description' => t("The grant ID a user must possess in the specified realm to gain this row's privileges on the node."),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'realm' => array(
'description' => t('The realm in which the user must possess the grant ID. Each node access node can define one or more realms.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'grant_view' => array(
'description' => t('Boolean indicating whether a user with the realm/grant pair can view this node.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
),
2007-10-10 11:39:35 +00:00
'grant_update' => array(
'description' => t('Boolean indicating whether a user with the realm/grant pair can edit this node.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
),
2007-10-10 11:39:35 +00:00
'grant_delete' => array(
'description' => t('Boolean indicating whether a user with the realm/grant pair can delete this node.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
2007-10-10 11:39:35 +00:00
),
2008-03-15 12:31:29 +00:00
),
2007-10-10 11:39:35 +00:00
'primary key' => array('nid', 'gid', 'realm'),
2008-03-15 12:31:29 +00:00
);
2007-10-05 16:07:22 +00:00
$schema['node_counter'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Access statistics for {node}s.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'nid' => array(
'description' => t('The {node}.nid for these statistics.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'totalcount' => array(
'description' => t('The total number of times the {node} has been viewed.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'big',
),
2007-10-10 11:39:35 +00:00
'daycount' => array(
'description' => t('The total number of times the {node} has been viewed today.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'medium',
),
2007-10-10 11:39:35 +00:00
'timestamp' => array(
'description' => t('The most recent time the {node} has been viewed.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
2007-10-10 11:39:35 +00:00
),
2008-03-15 12:31:29 +00:00
),
2007-10-05 16:07:22 +00:00
'primary key' => array('nid'),
2008-03-15 12:31:29 +00:00
);
2007-10-05 16:07:22 +00:00
$schema['node_revisions'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Stores information about each saved version of a {node}.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'nid' => array(
'description' => t('The {node} this version belongs to.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'vid' => array(
'description' => t('The primary identifier for this version.'),
'type' => 'serial',
'unsigned' => TRUE,
2008-03-15 12:31:29 +00:00
'not null' => TRUE,
),
2007-10-10 11:39:35 +00:00
'uid' => array(
'description' => t('The {users}.uid that created this version.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'title' => array(
'description' => t('The title of this version.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'body' => array(
'description' => t('The body of this version.'),
'type' => 'text',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'big',
),
2007-10-10 11:39:35 +00:00
'teaser' => array(
'description' => t('The teaser of this version.'),
'type' => 'text',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'big',
),
2007-10-10 11:39:35 +00:00
'log' => array(
'description' => t('The log entry explaining the changes in this version.'),
'type' => 'text',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'big',
),
2007-10-10 11:39:35 +00:00
'timestamp' => array(
'description' => t('A Unix timestamp indicating when this version was created.'),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
),
2007-10-10 11:39:35 +00:00
'format' => array(
'description' => t("The input format used by this version's body."),
'type' => 'int',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => 0,
2007-10-10 11:39:35 +00:00
),
2008-03-15 12:31:29 +00:00
),
2007-10-05 16:07:22 +00:00
'indexes' => array(
'nid' => array('nid'),
2008-03-15 12:31:29 +00:00
'uid' => array('uid'),
),
2007-10-05 16:07:22 +00:00
'primary key' => array('vid'),
2008-03-15 12:31:29 +00:00
);
2007-10-05 16:07:22 +00:00
$schema['node_type'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Stores information about all defined {node} types.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'type' => array(
'description' => t('The machine-readable name of this type.'),
'type' => 'varchar',
'length' => 32,
2008-03-15 12:31:29 +00:00
'not null' => TRUE,
),
2007-10-10 11:39:35 +00:00
'name' => array(
'description' => t('The human-readable name of this type.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'module' => array(
'description' => t('The module that implements this type.'),
'type' => 'varchar',
'length' => 255,
2008-03-15 12:31:29 +00:00
'not null' => TRUE,
),
'description' => array(
2007-10-10 11:39:35 +00:00
'description' => t('A brief description of this type.'),
'type' => 'text',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'medium',
),
2007-10-10 11:39:35 +00:00
'help' => array(
'description' => t('Help information shown to the user when creating a {node} of this type.'),
'type' => 'text',
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'medium',
),
2007-10-10 11:39:35 +00:00
'has_title' => array(
'description' => t('Boolean indicating whether this type uses the {node}.title field.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
),
2007-10-10 11:39:35 +00:00
'title_label' => array(
'description' => t('The label displayed for the title field on the edit form.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'has_body' => array(
2007-11-04 14:33:07 +00:00
'description' => t('Boolean indicating whether this type uses the {node_revisions}.body field.'),
2007-10-10 11:39:35 +00:00
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
),
2007-10-10 11:39:35 +00:00
'body_label' => array(
'description' => t('The label displayed for the body field on the edit form.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
),
2007-10-10 11:39:35 +00:00
'min_word_count' => array(
'description' => t('The minimum number of words the body must contain.'),
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'size' => 'small',
),
2007-10-10 11:39:35 +00:00
'custom' => array(
'description' => t('A boolean indicating whether this type is defined by a module (FALSE) or by a user via a module like the Content Construction Kit (TRUE).'),
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
),
2007-10-10 11:39:35 +00:00
'modified' => array(
'description' => t('A boolean indicating whether this type has been modified by an administrator; currently not used in any way.'),
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
),
2007-10-10 11:39:35 +00:00
'locked' => array(
'description' => t('A boolean indicating whether the administrator can change the machine name of this type.'),
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2008-03-15 12:31:29 +00:00
'size' => 'tiny',
),
2007-10-10 11:39:35 +00:00
'orig_type' => array(
'description' => t('The original machine-readable name of this node type. This may be different from the current type name if the locked field is 0.'),
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
2008-03-15 12:31:29 +00:00
'default' => '',
2007-10-10 11:39:35 +00:00
),
2008-03-15 12:31:29 +00:00
),
2007-10-05 16:07:22 +00:00
'primary key' => array('type'),
2008-03-15 12:31:29 +00:00
);
2007-10-05 16:07:22 +00:00
return $schema;
}