From 39ffb99760ea204c3b9578a4c8037d8d509be326 Mon Sep 17 00:00:00 2001 From: fabio Date: Tue, 17 Apr 2018 17:10:18 +0000 Subject: [PATCH] bug#10775 dev: Valdevir qua: Marcelo git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@81052 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180411_0853__mantis10428.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20180411_0853__mantis10428.sql diff --git a/src/db/migration/V20180411_0853__mantis10428.sql b/src/db/migration/V20180411_0853__mantis10428.sql new file mode 100644 index 000000000..979387efa --- /dev/null +++ b/src/db/migration/V20180411_0853__mantis10428.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE DIGITA_ITEM ADD ( INDCANCELAMENTO NUMBER(1, 0) DEFAULT 0 )'; + exception when object_exists then null; +end; \ No newline at end of file