From 50a4f0b39f463e62b2b64cc9995bd1dd847f4330 Mon Sep 17 00:00:00 2001 From: wilian Date: Tue, 3 Jan 2017 18:45:43 +0000 Subject: [PATCH] bug #8485 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@64470 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170102_1615__mantis8485.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20170102_1615__mantis8485.sql diff --git a/src/db/migration/V20170102_1615__mantis8485.sql b/src/db/migration/V20170102_1615__mantis8485.sql new file mode 100644 index 000000000..c123cf0c8 --- /dev/null +++ b/src/db/migration/V20170102_1615__mantis8485.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO ADD (TIPODESCCOMPPRECO NUMBER(1,0), + DESCCOMPPRECO NUMBER(5,2))'; + exception when object_exists then null; +end; \ No newline at end of file