diff --git a/src/db/migration/V20190227_2030__mantis13611.sql b/src/db/migration/V20190227_2030__mantis13611.sql index 4201ab051..db16ef37a 100644 --- a/src/db/migration/V20190227_2030__mantis13611.sql +++ b/src/db/migration/V20190227_2030__mantis13611.sql @@ -1,9 +1,9 @@ declare - column_exists exception; + object_exists exception; pragma exception_init (object_exists , -00955); begin execute immediate 'CREATE INDEX IDX_CHAVE ON CUSTOM (CHAVE)'; - exception when column_exists then null; + exception when object_exists then null; end; / declare