add -h flag to remove history too
authorjeff <jeff>
Wed, 18 Aug 2010 23:42:26 +0000 (23:42 +0000)
committerjeff <jeff>
Wed, 18 Aug 2010 23:42:26 +0000 (23:42 +0000)
bin/test_scrub

index 5766925..88edc33 100644 (file)
 #-business-onlinepayment and business-onlinepayment-ach config
 
 use strict;
+use vars qw( $opt_h );
+use Getopt::Std;
 use FS::UID qw(adminsuidsetup dbh);
 use FS::Conf;
+use FS::Schema qw(dbdef);
+
+getopts('h');
 
 adminsuidsetup shift;
 
@@ -45,4 +50,11 @@ foreach my $item (qw(
   $conf->delete($item);
 }
 
+if ($opt_h) {  # not all history can be safely deleted
+  foreach my $table (grep { /^h_\w+$/ } dbdef->tables) {
+    my $sth = dbh->prepare("DELETE FROM $table") or die dbh->errstr;
+    $sth->execute or die $sth->errstr;
+  }
+}
+
 dbh->commit or die dbh->errstr;