Index: faq.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/faq/Attic/faq.install,v
retrieving revision 1.1.4.16.2.1
retrieving revision 1.1.4.16.2.2
diff -u -r1.1.4.16.2.1 -r1.1.4.16.2.2
--- faq.install 5 Sep 2007 14:05:48 -0000       1.1.4.16.2.1
+++ faq.install 19 Sep 2007 12:31:02 -0000      1.1.4.16.2.2
@@ -1,5 +1,5 @@
 <?php
-// $Id: faq.install,v 1.1.4.16.2.1 2007/09/05 14:05:48 snpower Exp $
+// $Id: faq.install,v 1.1.4.16.2.2 2007/09/19 12:31:02 snpower Exp $

 function faq_install() {
   drupal_install_schema('faq');
@@ -53,13 +53,13 @@
     'fields' => array(
       'tid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
       'nid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
-      'weight' => array('type' => 'tinyint', 'size' => 'tiny', 'not null' => TRUE, 'default' => 0),
+      'weight' => array('type' => 'int', 'size' => 'tiny', 'not null' => TRUE, 'default' => 0),
     ),
     'primary key' => array('nid', 'tid'),
   );

   $ret = array();
-  db_create_table($ret, 'faq', $schema['faq']);
+  db_create_table($ret, 'faq_weights', $schema['faq_weights']);

   return $ret;
 }
Index: faq.schema
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/faq/Attic/faq.schema,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 faq.schema
--- faq.schema  5 Sep 2007 14:06:16 -0000       1.1.2.1
+++ faq.schema  19 Sep 2007 12:32:51 -0000
@@ -6,7 +6,7 @@
     'fields' => array(
       'tid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
       'nid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0),
-      'weight' => array('type' => 'tinyint', 'size' => 'tiny', 'not null' => TRUE, 'default' => 0),
+      'weight' => array('type' => 'int', 'size' => 'tiny', 'not null' => TRUE, 'default' => 0),
     ),
     'primary key' => array('nid', 'tid'),
   );
