From 97ee984539cbfce809fd2479e4e515dba007208e Mon Sep 17 00:00:00 2001 From: wilian Date: Thu, 13 Feb 2020 18:53:15 +0000 Subject: [PATCH] fixes bug#18326 dev:valdir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@100205 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../migration/V20200213_1106__mantis18326.sql | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/db/migration/V20200213_1106__mantis18326.sql diff --git a/src/db/migration/V20200213_1106__mantis18326.sql b/src/db/migration/V20200213_1106__mantis18326.sql new file mode 100644 index 000000000..683c2a302 --- /dev/null +++ b/src/db/migration/V20200213_1106__mantis18326.sql @@ -0,0 +1,33 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'update custom set sistema = ''2'' where chave = ''ocupaValidacionExternaAutobus'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''clienteProducto'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isValidarVigenciaAbierto'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isValidarUsuarioEstacaoMesmoPontoVenda'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isTarjetaViaje'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''envioAvituallamiento'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''copiaBloqueioSimilar'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''mostrarAutoBusMenorAsiento'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''trataReexpedicion'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''database.rds'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''ordenaCorridasPorHoraDestinoServico'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''ordenaCorridasPorHoraServico'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''reporteCorteAgenciaCentral'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''generaNumFolioSistemaVentaInternet'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''generaNumFolioSistemaAbertoPrePago'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''generaCajaOcupacion'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''tipoNumSistema'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''maxNumfoliosistema'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isVentaGratuidadeNinoSimilarParado'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isCodigoAgenciaMapaViagem'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isTaxaEmbarqueSocicamAgenciaOrigem'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isConsiderarSeguroOpcionalPreco'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isConsiderarICMSIntermunicipalIMatricial'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''isConsiderarICMSInterestadualIMatricial'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''imprimeApenasNroPuntoVenta'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''exibeNumRutaMapa'''; + execute immediate 'update custom set sistema = ''2'' where chave = ''trataVoucher'''; + exception when object_exists then null; +end; \ No newline at end of file