From: ivan Date: Fri, 17 Apr 2009 10:17:03 +0000 (+0000) Subject: backport paycvv upgrade from 1.9: "orders of magnitude faster" X-Git-Tag: freeside_1_7_4rc1~61 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=9a206761698d308c144204a012a06508a2b7cb55;p=freeside.git backport paycvv upgrade from 1.9: "orders of magnitude faster" --- diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 8f7530ff0..d3c0886e1 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -6283,7 +6283,7 @@ sub _agent_plandata { sub _upgrade_data { #class method my ($class, %opts) = @_; - my $sql = 'UPDATE h_cust_main SET paycvv = NULL'; + my $sql = 'UPDATE h_cust_main SET paycvv = NULL WHERE paycvv IS NOT NULL'; my $sth = dbh->prepare($sql) or die dbh->errstr; $sth->execute or die $sth->errstr;