minor edits
authorChris Sharp <csharp@georgialibraries.org>
Tue, 11 Sep 2012 12:22:22 +0000 (08:22 -0400)
committerChris Sharp <csharp@georgialibraries.org>
Tue, 11 Sep 2012 12:22:22 +0000 (08:22 -0400)
change_reports_owner.pl

index ae1a7fd..86219ee 100755 (executable)
@@ -94,7 +94,7 @@ if ($response eq "n") {
        exit()
 }
 
-my @tables = qw/reporter.template_folder reporter.report_folder reporter.template reporter.report/;
+my @tables = qw/reporter.template_folder reporter.report_folder reporter.output_folder reporter.template reporter.report/;
 foreach my $table (@tables) {
        my $update_owner = qq/UPDATE $table SET owner = ? WHERE owner = ?/;
        $sth = $dbh->prepare("$update_owner");
@@ -102,7 +102,11 @@ foreach my $table (@tables) {
        print "Setting new owner for $table.\n";
 }
 
+my $update_schedule = qq/UPDATE reporter.schedule SET runner = $user_id2 WHERE runner = $user_id1 AND complete_time IS NULL/;
+
 $dbh->commit;
 
+
+
 # clean up
 $dbh->disconnect();