diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-12-05 15:52:04 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-12-05 15:52:04 +0100 |
commit | c53e78e2bc7447b7346e9963f8ce78ed3ddcc456 (patch) | |
tree | 6113c744943637b86192327f74b921e55587e18e /extensions | |
parent | 1e568a3de96b0c8898f8083c0635647ae80d11ca (diff) | |
download | bugzilla-c53e78e2bc7447b7346e9963f8ce78ed3ddcc456.tar.gz bugzilla-c53e78e2bc7447b7346e9963f8ce78ed3ddcc456.tar.xz |
Bug 1423206 - Remove aha removal code
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/Push/Extension.pm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/extensions/Push/Extension.pm b/extensions/Push/Extension.pm index a5ec24639..f682dea35 100644 --- a/extensions/Push/Extension.pm +++ b/extensions/Push/Extension.pm @@ -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; |