From 4339f195bf4a01e8512483677d2a8a718b7b99bb Mon Sep 17 00:00:00 2001 From: alberto Date: Tue, 2 Apr 2019 21:47:18 +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@91498 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20190402_1710__mantis13748.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20190402_1710__mantis13748.sql diff --git a/src/db/migration/V20190402_1710__mantis13748.sql b/src/db/migration/V20190402_1710__mantis13748.sql new file mode 100644 index 000000000..bfdef49e2 --- /dev/null +++ b/src/db/migration/V20190402_1710__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 PUNTOVENTA_ID NUMBER(7)'; + exception when column_exists then null; +end; \ No newline at end of file