diff --git a/uc_ideal_easy_payment.install b/uc_ideal_easy_payment.install index 2b8ea65..0df012b 100644 --- a/uc_ideal_easy_payment.install +++ b/uc_ideal_easy_payment.install @@ -2,17 +2,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'), @@ -21,9 +21,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',