Index: nodewords.install
===================================================================
--- nodewords.install	(revision 3)
+++ nodewords.install	(working copy)
@@ -99,6 +99,46 @@
     'primary key' => array('mtid'),
   );
 
+  $schema['nodewords_custom'] = array(   
+    'description' => 'The table containing data for custom pages.',   
+    'fields' => array(    
+     'pid' => array(   
+       'description' => 'The primary key.',    
+       'type' => 'serial',   
+       'not null' => TRUE,   
+     ),    
+     'name' => array(    
+       'description' => 'The page name as shown in the list of custom pages.',   
+       'type' => 'varchar',    
+       'length' => 60,   
+       'not null' => TRUE,   
+       'default' => '',    
+     ),    
+     'path' => array(    
+       'description' => 'The page path.',    
+       'type' => 'text',   
+       'size' => 'medium',   
+       'not null' => TRUE,   
+     ),    
+     'weight' => array(    
+       'description' => 'The weight of the page.',   
+       'type' => 'int',    
+       'size' => 'small',    
+       'not null' => TRUE,   
+       'default' => 0,   
+     ),    
+     'enabled' => array(   
+       'description' => 'A flag set when the page is enabled.',    
+       'type' => 'int',    
+       'size' => 'small',    
+       'unsigned' => TRUE,   
+       'not null' => TRUE,   
+       'default' => 1,   
+     ),    
+    ),    
+    'primary key' => array('pid'),    
+  );  
+  
   return $schema;
 }
 
