Skip to content

Commit

Permalink
fix: corrige PR 609
Browse files Browse the repository at this point in the history
  • Loading branch information
marvdias committed Sep 3, 2024
1 parent 208d197 commit b870a53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/sei_atualizar_versao_modulo_pen.php
Original file line number Diff line number Diff line change
Expand Up @@ -3097,8 +3097,8 @@ protected function instalarV3070()
private function removerTabelas($tabelas)
{
foreach($tabelas as $tabela) {
if ($objMetaBD->isTabelaExiste($tabela)) {
$objMetaBD->removerTabela($tabela);
if ($this->objMeta->isTabelaExiste($tabela)) {
$this->objMeta->removerTabela($tabela);
}
}
}
Expand Down

0 comments on commit b870a53

Please sign in to comment.