From 2150eb6940654e251a821d28401df0a2dc5b3948 Mon Sep 17 00:00:00 2001 From: thiago Date: Mon, 7 Oct 2019 02:28:38 +0000 Subject: [PATCH] =?UTF-8?q?Altera=C3=A7=C3=B5es=20feitas=20em=20cadastro?= =?UTF-8?q?=20de=20linha=20para=20permitir=20ou=20n=C3=A3o=20o=20uso=20do?= =?UTF-8?q?=20pricing=20fixes=20bug#15644=20dev:Thiago=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@98100 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20190915_1851__mantis15644.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20190915_1851__mantis15644.sql diff --git a/src/db/migration/V20190915_1851__mantis15644.sql b/src/db/migration/V20190915_1851__mantis15644.sql new file mode 100644 index 000000000..fe34eb110 --- /dev/null +++ b/src/db/migration/V20190915_1851__mantis15644.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE RUTA_COMBINACION ADD (INDUSAPRICING NUMBER(1))'; + exception when column_exists then null; +end; \ No newline at end of file