book_schema()
Implements hook_schema().
File
core/modules/book/book.install, line 19 Install, update and uninstall functions for the book module.
Code
function book_schema() {
$schema['book'] = array(
'description' => 'Stores book outline information. Uniquely defines the location of each node in the book outline',
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,