diff --git a/scripts/db-convert-0.1-to-0.2.plx b/scripts/db-convert-0.1-to-0.2.plx index 74053ec..102245d 100644 --- a/scripts/db-convert-0.1-to-0.2.plx +++ b/scripts/db-convert-0.1-to-0.2.plx @@ -90,7 +90,7 @@ while (my $row = $sthOld->fetchrow_hashref) { $sthInsertRequest->execute($supporterId, $announceEmailListRequestTypeId, undef, ($row->{on_announce_mailman_list} ? $fulfillmentId : undef)); } - $sthInsertEmailAddress->execute($supporterId, $row->{paypal_payer}); + $sthInsertEmailAddress->execute($row->{paypal_payer}); my $emailId = $dbhNew->last_insert_id("","","",""); $sthLinkSupporterToEmail->execute($supporterId, $emailId); $sthPostalAddress->execute($supporterId, $row->{formatted_address});