]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1423206 - Remove aha removal code
authorDylan William Hardison <dylan@hardison.net>
Tue, 5 Dec 2017 14:52:04 +0000 (09:52 -0500)
committerDylan William Hardison <dylan@hardison.net>
Tue, 5 Dec 2017 14:52:04 +0000 (09:52 -0500)
extensions/Push/Extension.pm

index a5ec246396ff535879052a020c89f478ee5a60c6..f682dea3565ea15b31669b5c0177a4ac9d721eda 100644 (file)
@@ -656,13 +656,4 @@ sub db_sanitize {
     $dbh->do("DELETE FROM push_options");
 }
 
-
-sub install_update_db {
-    my $dbh = Bugzilla->dbh;
-    $dbh->do("DELETE FROM push_options WHERE connector = ?", undef, "Aha");
-    $dbh->do("DELETE FROM push_log WHERE connector = ?", undef, "Aha");
-    $dbh->do("DELETE FROM push_backlog WHERE connector = ?", undef, "Aha");
-    $dbh->do("DELETE FROM push_backoff WHERE connector = ?", undef, "Aha");
-}
-
 __PACKAGE__->NAME;