From e73b366d4b32b4d6c341fddfcab61f843f45edf5 Mon Sep 17 00:00:00 2001 From: alberto Date: Wed, 27 Mar 2019 14:43:42 +0000 Subject: [PATCH] =?UTF-8?q?S=C3=A9rie=20para=20venda=20embarcada=20bug#137?= =?UTF-8?q?48=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@91245 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20190327_1200__mantis13748.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20190327_1200__mantis13748.sql diff --git a/src/db/migration/V20190327_1200__mantis13748.sql b/src/db/migration/V20190327_1200__mantis13748.sql new file mode 100644 index 000000000..46fd5729f --- /dev/null +++ b/src/db/migration/V20190327_1200__mantis13748.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CTRL_SERIE_EMBARCADA ADD CTRLSERIEEMBARCADASEQ_ID NUMBER(8)'; + exception when column_exists then null; +end; \ No newline at end of file