From 4f784fa7d71a1b995ade669b2dd3855b9764270d Mon Sep 17 00:00:00 2001 From: fabio Date: Mon, 27 Sep 2021 14:12:20 +0000 Subject: [PATCH] bug#23271 dev: Valdevir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@108843 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20210617_1759__mantis19598.sql | 5 ++--- src/db/postgresql/migration/V20210617_1759__mantis19598.sql | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/db/migration/V20210617_1759__mantis19598.sql b/src/db/migration/V20210617_1759__mantis19598.sql index 805d5ab63..9f2fcb1c1 100644 --- a/src/db/migration/V20210617_1759__mantis19598.sql +++ b/src/db/migration/V20210617_1759__mantis19598.sql @@ -1,9 +1,8 @@ -/ declare column_exists exception; pragma exception_init (column_exists , -01430); begin - execute immediate 'ALTER TABLE CHECKIN_AUTOMATICO ADD IMEI_EMBARCADA VARCHAR(20)'; + execute immediate 'ALTER TABLE VTABOL.CHECKIN_AUTOMATICO ADD IMEI_EMBARCADA VARCHAR(20)'; exception when column_exists then null; end; / @@ -11,7 +10,7 @@ declare column_exists exception; pragma exception_init (column_exists , -01430); begin - execute immediate 'ALTER TABLE CHECKIN_CERRADO ADD IMEI_EMBARCADA VARCHAR(20)'; + execute immediate 'ALTER TABLE VTABOL.CHECKIN_CERRADO ADD IMEI_EMBARCADA VARCHAR(20)'; exception when column_exists then null; end; / \ No newline at end of file diff --git a/src/db/postgresql/migration/V20210617_1759__mantis19598.sql b/src/db/postgresql/migration/V20210617_1759__mantis19598.sql index 805d5ab63..a33adeeda 100644 --- a/src/db/postgresql/migration/V20210617_1759__mantis19598.sql +++ b/src/db/postgresql/migration/V20210617_1759__mantis19598.sql @@ -1,4 +1,3 @@ -/ declare column_exists exception; pragma exception_init (column_exists , -01430);