Skip to content

Commit

Permalink
Also remove mozilla_iam_updates table
Browse files Browse the repository at this point in the history
  • Loading branch information
dklawren committed Sep 22, 2023
1 parent dc955ae commit a36881e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion extensions/MozillaIAM/Extension.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ use warnings;
use base qw(Bugzilla::Extension);

sub install_update_db {
Bugzilla->dbh->bz_drop_table('profiles_iam');
my $dbh = Bugzilla->dbh;
$dbh->bz_drop_table('profiles_iam');
$dbh->bz_drop_table('mozilla_iam_updates');
}

__PACKAGE__->NAME;

0 comments on commit a36881e

Please sign in to comment.