Index: lm_paypal.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/lm_paypal/lm_paypal.install,v
retrieving revision 1.26.6.4
diff -u -p -r1.26.6.4 lm_paypal.install
--- lm_paypal.install	3 Jan 2009 13:09:35 -0000	1.26.6.4
+++ lm_paypal.install	7 Apr 2009 18:28:40 -0000
@@ -66,7 +66,7 @@ function lm_paypal_schema() {
       'address_country'       => array('type' => 'varchar', 'length' => 64, 'description' => 'Country of customers address.'),
       'address_country_code'  => array('type' => 'varchar', 'length' => 2, 'description' => 'Two-character ISO 3166 country code'),
       'address_state'         => array('type' => 'varchar', 'length' => 40, 'description' => 'State of customers address'),
-      'address_status'        => array('type' => 'int', 'size' => 'tiny', 'description' => 'Customer provided a confirmed/unconfirmed address.'),
+      'address_status'        => array('type' => 'varchar', 'length' => 20, 'description' => 'Customer provided a confirmed/unconfirmed address.'),
       'payer_id'              => array('type' => 'varchar', 'length' => 13, 'description' => 'Unique customer ID.'),
       'payer_status'          => array('type' => 'varchar', 'length' => 40, 'description' => 'Customer has a Verified|Unverified PayPal account.'),
       'residence_country'     => array('type' => 'varchar', 'length' => 2, 'description' => 'Two-character ISO 3166 country code'),
@@ -145,3 +145,9 @@ function lm_paypal_update_6001() {
   db_change_field($ret, 'lm_paypal_ipns', 'payment_date', 'payment_date', array('type' => 'varchar', 'length' => 28));
   return $ret;
 }
+
+function lm_paypal_update_6002() {
+  $ret = array();
+  db_change_field($ret, 'lm_paypal_ipns', 'address_status', 'address_status', array('type' => 'varchar', 'length' => 20));
+  return $ret;
+}
Index: lm_paypal.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/lm_paypal/lm_paypal.module,v
retrieving revision 1.27.6.17
diff -u -p -r1.27.6.17 lm_paypal.module
--- lm_paypal.module	14 Jan 2009 22:42:57 -0000	1.27.6.17
+++ lm_paypal.module	7 Apr 2009 18:28:40 -0000
@@ -502,7 +502,6 @@ function lm_paypal_ipn_in() {
     'timestamp',
     'processed',
     'test_ipn',
-    'address_status',
     'quantity',
     'shipping',
     'payment_fee',
