Index: xmlsitemap_node/xmlsitemap_node.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_node/xmlsitemap_node.install,v retrieving revision 1.8 diff -u -p -r1.8 xmlsitemap_node.install --- xmlsitemap_node/xmlsitemap_node.install 20 May 2008 17:48:47 -0000 1.8 +++ xmlsitemap_node/xmlsitemap_node.install 28 May 2008 18:41:21 -0000 @@ -36,48 +36,31 @@ function xmlsitemap_node_schema() { 'description' => t('The path of this node.'), 'type' => 'int', 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'pid' => array( 'description' => t('The id of the path.'), 'type' => 'int', 'unsigned' => TRUE, - 'not null' => FALSE, - 'default' => 0, ), 'last_changed' => array( 'description' => t('Keeps track of new changes.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'previously_changed' => array( 'description' => t('Keeps track of old changes.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'last_comment' => array( 'description' => t('Link to last comment.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'previous_comment' => array( 'description' => t('Link to previous comment.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => FALSE, - 'default' => 0, ), 'priority_override' => array( 'description' => t('Stores the index value.'), 'type' => 'float', - 'not null' => FALSE, ), ), 'indexes' => array( Index: xmlsitemap_term/xmlsitemap_term.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_term/xmlsitemap_term.install,v retrieving revision 1.4 diff -u -p -r1.4 xmlsitemap_term.install --- xmlsitemap_term/xmlsitemap_term.install 20 May 2008 17:48:47 -0000 1.4 +++ xmlsitemap_term/xmlsitemap_term.install 28 May 2008 18:41:21 -0000 @@ -28,34 +28,23 @@ function xmlsitemap_term_schema() { 'description' => t('The id of the path.'), 'type' => 'int', 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'pid' => array( 'description' => t('The id of the path.'), 'type' => 'int', 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'last_changed' => array( 'description' => t('Keeps track of new changes.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'previously_changed' => array( 'description' => t('Keeps track of old changes.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'priority_override' => array( 'description' => t('Stores the index value.'), 'type' => 'float', - 'not null' => FALSE, ), ), 'indexes' => array( Index: xmlsitemap_user/xmlsitemap_user.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/xmlsitemap/xmlsitemap_user/xmlsitemap_user.install,v retrieving revision 1.5 diff -u -p -r1.5 xmlsitemap_user.install --- xmlsitemap_user/xmlsitemap_user.install 20 May 2008 17:48:47 -0000 1.5 +++ xmlsitemap_user/xmlsitemap_user.install 28 May 2008 18:41:21 -0000 @@ -28,34 +28,23 @@ function xmlsitemap_user_schema() { 'description' => t('The id of the path.'), 'type' => 'int', 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'pid' => array( 'description' => t('The id of the path.'), 'type' => 'int', 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'last_changed' => array( 'description' => t('Keeps track of new changes.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'previously_changed' => array( 'description' => t('Keeps track of old changes.'), 'type' => 'int', - 'unsigned' => TRUE, - 'not null' => TRUE, - 'default' => 0, ), 'priority_override' => array( 'description' => t('Stores the index value.'), 'type' => 'float', - 'not null' => FALSE, ), ), 'indexes' => array( @@ -72,7 +61,6 @@ function xmlsitemap_user_schema() { 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, - 'default' => 0, ), 'priority' => array( 'description' => t('Stores the index value.'),