From 780fc953623d56505814c9a8f7ce6f1906032021 Mon Sep 17 00:00:00 2001 From: alberto Date: Wed, 27 Mar 2019 18:50:45 +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@91262 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20190327_1550__mantis13748.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20190327_1550__mantis13748.sql diff --git a/src/db/migration/V20190327_1550__mantis13748.sql b/src/db/migration/V20190327_1550__mantis13748.sql new file mode 100644 index 000000000..9a4d12531 --- /dev/null +++ b/src/db/migration/V20190327_1550__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 IND_REUTILIZADO NUMBER(1) DEFAULT 0'; + exception when column_exists then null; +end; \ No newline at end of file