--- uc_ideal_easy_payment.install 2009-09-06 17:48:37.000000000 +0200 +++ uc_ideal_easy_payment.install.fixed 2009-09-06 17:48:09.000000000 +0200 @@ -3,17 +3,17 @@ function uc_ideal_easy_payment_schema() { $schema['uc_payment_ideal_easy'] = array( - 'description' => t("Table for Ubercart payments trough iDEAL easy"), + 'description' => t("Table for Ubercart payments through iDEAL easy"), 'fields' => array( 'order_id' => array( 'description' => t('Primary Key: Unique order_id.'), - 'type' => 'mediumint', - 'length' => 9, + 'type' => 'int', + 'size' => 'medium', 'not null' => TRUE), 'transaction_id' => array( 'description' => t('transaction_id'), - 'type' => 'mediumint', - 'length' => 9, + 'type' => 'int', + 'size' => 'medium', 'not null' => TRUE), 'description' => array( 'description' => t('description'), @@ -22,9 +22,9 @@ function uc_ideal_easy_payment_schema() 'length' => 9), 'order_status' => array( 'description' => t('A Unix timestamp indicating when the cache entry was created.'), - 'type' => 'tinyint', - 'not null' => TRUE, - 'length' => 4), + 'type' => 'int', + 'size' => 'tiny', + 'not null' => TRUE), 'return_succes' => array( 'description' => t('Any custom HTTP headers to be added to cached data.'), 'type' => 'text',