bug#AL-1808

master
aristides@rjconsultores.com.br 2022-12-21 17:18:29 -03:00
parent ccb9ea7b0d
commit b2c29aa088
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FORMA_PAGO ADD (INDETICKET NUMER(1,0) )';
execute immediate 'ALTER TABLE FORMA_PAGO ADD (INDETICKET NUMBER(1,0) )';
exception when column_exists then null;
end;