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