AdmMono/src/db/migration/V20190222_1700__mantis13686...

15 lines
263 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE CHECKIN_AUTOMATICO MODIFY CHECKINAUTOMATICO_ID NUMBER(15,0)';
exception when column_exists then null;
end;
/