wilian 2017-10-20 20:14:55 +00:00
parent 84b9d77b7e
commit a43ffc50c0
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO ADD INDNAOPERMITEVDAMESMODOCVIAGEM NUMBER(1,0)';
exception when column_exists then null;
end;