Atualizar 'src/db/postgresql/migration/V20230213_1155__AL-2145.sql'

master
fabio 2023-02-13 20:58:43 +00:00
parent 4b1330c92a
commit 2d6b85a8ec
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ declare
indice_nao_existe exception;
pragma exception_init (indice_nao_existe , -01418);
begin
execute immediate 'DROP INDEX UNIQUE_CODANTT;';
execute immediate 'DROP INDEX UNIQUE_CODANTT';
exception when indice_nao_existe then null;
end;
/