AdmMono/src/db/migration/V20181119_1200__mantis12622...

7 lines
231 B
SQL

declare
object_exists exception;
pragma exception_init (object_exists , -01430);
begin
execute immediate 'ALTER TABLE ESTACION ADD (INDVOUCHER NUMBER(1,0) DEFAULT 1)';
exception when object_exists then null;
end;