git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@73040 d1611594-4594-4d17-8e1d-87c2c4800839
master
wilian 2017-08-24 19:27:57 +00:00
parent d62ab18688
commit 9082e174e5
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ declare
object_exists exception;
pragma exception_init (object_exists , -02260);
begin
execute immediate 'ALTER TABLE FOLIO_CONSUMO_RMD ADD (INDIMPRESSO NUMBER(1) DEFAULT 0 NOT NUL)';
execute immediate 'ALTER TABLE FOLIO_CONSUMO_RMD ADD (INDIMPRESSO NUMBER(1) DEFAULT 0 NOT NULL)';
exception when object_exists then null;
end;