Acertando o script feat bug#AL-4273
parent
38f783a864
commit
c64cf61d14
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>br.com.rjconsultores</groupId>
|
<groupId>br.com.rjconsultores</groupId>
|
||||||
<artifactId>Flyway</artifactId>
|
<artifactId>Flyway</artifactId>
|
||||||
<version>1.88.1</version>
|
<version>1.88.2</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
declare
|
||||||
|
table_exists exception;
|
||||||
|
pragma exception_init (table_exists , -00955);
|
||||||
|
begin
|
||||||
|
execute immediate
|
||||||
|
'CREATE TABLE COMPROVANTE_PASSAGEM (
|
||||||
|
COMPROVANTEPASSAGEM_ID NUMBER(7,0) NOT NULL ENABLE,
|
||||||
|
EMPRESA_ID NUMBER(7,0),
|
||||||
|
NUMOPERACION VARCHAR2(36 BYTE),
|
||||||
|
DOCUMENTO BLOB,
|
||||||
|
ACTIVO NUMBER(1,0),
|
||||||
|
FECMODIF DATE,
|
||||||
|
USUARIO_ID NUMBER(7,0),
|
||||||
|
PRIMARY KEY (COMPROVANTEPASSAGEM_ID),
|
||||||
|
FOREIGN KEY (EMPRESA_ID)
|
||||||
|
REFERENCES EMPRESA (EMPRESA_ID) ENABLE
|
||||||
|
) ';
|
||||||
|
|
||||||
|
exception when table_exists then null;
|
||||||
|
end;
|
||||||
|
/
|
||||||
|
|
||||||
|
declare
|
||||||
|
object_exists exception;
|
||||||
|
pragma exception_init (object_exists , -00955);
|
||||||
|
begin
|
||||||
|
execute immediate
|
||||||
|
'CREATE SEQUENCE COMPROVANTE_PASSAGEM_SEQ';
|
||||||
|
exception when object_exists then null;
|
||||||
|
end;
|
||||||
|
/
|
Loading…
Reference in New Issue