From a3d928dd33e6e66315f539a98ef481887b058ded Mon Sep 17 00:00:00 2001 From: wilian Date: Fri, 28 Apr 2017 20:54:57 +0000 Subject: [PATCH] fixes bug #8923 fixes bug #8925 git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@68399 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170428_1141__mantis8923.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170428_1141__mantis8923.sql diff --git a/src/db/migration/V20170428_1141__mantis8923.sql b/src/db/migration/V20170428_1141__mantis8923.sql new file mode 100644 index 000000000..74155b353 --- /dev/null +++ b/src/db/migration/V20170428_1141__mantis8923.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE VENDA_PACOTE ADD CLIENTE_ID NUMBER(7,0)'; + exception when object_exists then null; +end; \ No newline at end of file