clean up any stray/old cust_pay_pending records causing problems
authorivan <ivan>
Fri, 30 May 2008 00:53:04 +0000 (00:53 +0000)
committerivan <ivan>
Fri, 30 May 2008 00:53:04 +0000 (00:53 +0000)
FS/FS/Upgrade.pm
FS/FS/cust_pay_pending.pm

index 5c873bf..8f3a6e5 100644 (file)
@@ -100,6 +100,9 @@ sub upgrade_data {
     #populate part_pkg_taxclass for starters
     'part_pkg_taxclass' => [],
 
+    #remove bad pending records
+    'cust_pay_pending' => [],
+
   ;
 
   \%hash;
index ad39b10..e5d01c0 100644 (file)
@@ -215,6 +215,21 @@ sub check {
   $self->SUPER::check;
 }
 
+# _upgrade_data
+#
+# Used by FS::Upgrade to migrate to a new database.
+
+sub _upgrade_data {  #class method
+  my ($class, %opts) = @_;
+
+  my $sql =
+    "DELETE FROM cust_pay_pending WHERE status = 'new' AND _date < ".(time-600);
+
+  my $sth = dbh->prepare($sql) or die dbh->errstr;
+  $sth->execute or die $sth->errstr;
+
+}
+
 =back
 
 =head1 BUGS