From 11651fab50dadc8ff701d3e82e03c00af69ae55b Mon Sep 17 00:00:00 2001 From: wilian Date: Thu, 14 Jun 2018 18:48:01 +0000 Subject: [PATCH] fixes bug#11340 dev:thiago qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@82640 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180612_1421__mantis11340.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20180612_1421__mantis11340.sql diff --git a/src/db/migration/V20180612_1421__mantis11340.sql b/src/db/migration/V20180612_1421__mantis11340.sql new file mode 100644 index 000000000..106457f9d --- /dev/null +++ b/src/db/migration/V20180612_1421__mantis11340.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02275); +begin + execute immediate + 'ALTER TABLE EMPRESA ADD (INDTRANSFERENCIABPEMOVICAJA NUMBER(1,0))'; + exception when object_exists then null; +end; \ No newline at end of file