bug#al-2980
Águia Branca - GLPI 65710 [PROJETO] - PRICING CONEXAO - ERRO AO GRAVAR PRICING COM CONEXAO ASSOCIADA EM HMG dev: qua: Aumentando o tamanho do campo pricing_id da tabela PRICING_CONEXAOmaster
parent
e706c38705
commit
cdb62707a2
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>Flyway</artifactId>
|
||||
<version>1.6.0</version>
|
||||
<version>1.6.1</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
declare
|
||||
object_exists exception;
|
||||
except_00957 exception;
|
||||
|
||||
pragma exception_init (object_exists , -01430);
|
||||
pragma exception_init (except_00957 , -00957);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE PRICING_CONEXAO MODIFY PRICING_ID NUMBER(15,0)';
|
||||
exception
|
||||
when object_exists then null;
|
||||
when except_00957 then null;
|
||||
end;
|
Loading…
Reference in New Issue