Implementação do fluxo de autorização para novas empresas

master
Gleimar Botelho Baleeiro 2023-11-14 17:19:17 -03:00
parent 8b23d30345
commit e00d7756ab
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
declare
object_exists exception;
except_00957 exception;
pragma exception_init (object_exists , -01430);
pragma exception_init (except_00957 , -00957);
begin
execute immediate 'ALTER TABLE EMPRESA ADD (LICENCA VARCHAR(500))';
exception
when object_exists then null;
when except_00957 then null;
end;
/