AdmMono/Flyway/src/db/backup/oracle/V20161205_1840__consumobole...

8 lines
226 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'alter table consumo_boleto modify (CORTETURNO_ID number(10,0))';
exception when column_exists then null;
end;