AdmMono/src/db/migration/V20190227_1840__mantis13647...

15 lines
478 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE EMPRESA ADD INDREAPROVEITARNUMBPEREJEITADO NUMBER(1,0) DEFAULT 0';
exception when column_exists then null;
end;
/
declare
object_exists exception;
pragma exception_init (object_exists , -00001);
begin
execute immediate 'UPDATE EMPRESA SET INDREAPROVEITARNUMBPEREJEITADO = 0';
exception when object_exists then null;
end;