--- fbconnect_old/fbconnect.install 2009-06-03 08:51:06.000000000 -0500 +++ ../fbconnect.install 2009-10-24 13:26:57.000000000 -0500 @@ -38,7 +38,7 @@ function fbconnect_schema() { $schema['fbconnect_users'] = array( 'fields' => array( 'uid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), - 'fbuid' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), + 'fbuid' => array('type' => 'int', 'size' => 'big', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), 'timestamp' => array('type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0), ), 'primary key' => array('fbuid'), @@ -56,4 +56,4 @@ function fbconnect_update_6002() { $ret[] = update_sql("ALTER TABLE {fbconnect_users} DROP `import_setting` , DROP `avatar` , DROP `visibility`"); $ret[] = update_sql("UPDATE {system} SET schema_version = 6002 WHERE name = 'fbconnect'"); return $ret; -} \ No newline at end of file +}