From 6d39ba26e91327561b430c6417f1784501b3b4be Mon Sep 17 00:00:00 2001 From: alberto Date: Wed, 21 Nov 2018 12:34:19 +0000 Subject: [PATCH] =?UTF-8?q?BPE=20-=20Customizar=20ativa=C3=A7=C3=A3o=20do?= =?UTF-8?q?=20bpe=20por=20esta=C3=A7=C3=A3o=20(Refactoring=20BPe)=20bug#12?= =?UTF-8?q?622=20dev:trevezani=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@87200 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20181119_1200__mantis12622.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20181119_1200__mantis12622.sql diff --git a/src/db/migration/V20181119_1200__mantis12622.sql b/src/db/migration/V20181119_1200__mantis12622.sql new file mode 100644 index 000000000..6db999531 --- /dev/null +++ b/src/db/migration/V20181119_1200__mantis12622.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESTACION ADD (INDVOUCHER NUMBER(1,0) DEFAULT 1)'; + exception when object_exists then null; +end; \ No newline at end of file