Index: import.install =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/import/import.install,v retrieving revision 1.1 diff -u -p -r1.1 import.install --- import.install 31 Oct 2008 17:51:22 -0000 1.1 +++ import.install 27 Apr 2009 22:13:29 -0000 @@ -16,7 +16,7 @@ function import_schema() { 'length' => 32, 'not null' => TRUE), ), - 'primary key' => array('impid','type'), + 'primary key' => array(array('impid', 256), array('type', 32)), ); $schema['import_fail'] = array( 'description' => t('The base fails for imports.'), @@ -38,7 +38,7 @@ function import_schema() { 'description' => t('Message'), ), ), - 'primary key' => array('impid','type'), + 'primary key' => array(array('impid', 256), array('type', 32)), ); $schema['import_pass'] = array( 'description' => t('The completed imports.'), @@ -54,7 +54,7 @@ function import_schema() { 'length' => 32, 'not null' => TRUE), ), - 'primary key' => array('impid','type'), + 'primary key' => array(array('impid', 256), array('type', 32)), ); return $schema; }