From 357800370b52394e4dc6c924663bef7c6f6b22de Mon Sep 17 00:00:00 2001 From: alberto Date: Wed, 18 Apr 2018 21:48:17 +0000 Subject: [PATCH] [BPE] - Parametrizar campos fixos do BPE bug#10901 dev:lucas qua:regis git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@81132 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180418_1840__mantis10901.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20180418_1840__mantis10901.sql diff --git a/src/db/migration/V20180418_1840__mantis10901.sql b/src/db/migration/V20180418_1840__mantis10901.sql new file mode 100644 index 000000000..abcb83cf1 --- /dev/null +++ b/src/db/migration/V20180418_1840__mantis10901.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CLASE_SERVICIO ADD (TIPOSERVICOBPE NUMBER(1))'; + exception when column_exists then null; +end;