From 57411034af7d6c703805433723fb7d601639da5d Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Sun, 6 Dec 2015 15:45:18 -0800 Subject: [PATCH] supporter_id does not belong here. --- scripts/db-convert-0.1-to-0.2.plx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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});