AdmMono/src/db/backup/oracle/V20220614_1101__mantis24629...

8 lines
238 B
SQL

declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO ADD TIPOOCUPACION_ID NUMBER(7,0)';
exception when object_exists then null;
end;