t('TODO: please describe this table!'), 'fields' => array( 'id' => array( 'description' => t('TODO: please describe this field!'), 'type' => 'serial', 'not null' => TRUE, ), 'nid' => array( 'description' => t('TODO: please describe this field!'), 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, ), 'template' => array( 'description' => t('TODO: please describe this field!'), 'type' => 'varchar', 'length' => '255', 'not null' => TRUE, ), ), 'primary key' => array('id'), ); return $schema; } /** * Implementation of hook_install(). */ function node_page_install() { drupal_install_schema('node_page'); } /** * Implementation of hook_uninstall(). */ function node_page_uninstall() { drupal_uninstall_schema('node_page'); }