AdmMono/src/db/migration/V20191024_1018__mantis16623...

7 lines
263 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE CORRIDA ADD (FECHORINTEGRADOTOTVS DATE, CONTADORINTEGRADOTOTVS NUMBER(7,0) )';
exception when column_exists then null;
end;