wilian 2017-09-27 22:31:35 +00:00
parent e3ca618b1e
commit a78ce2a83d
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 EMPRESA ADD INDBILHETEDEVDEBITODINHEIRO NUMBER(1,0)';
exception when column_exists then null;
end;