diff --git a/src/db/migration/V20170504_1725__mantis8827.sql b/src/db/migration/V20170504_1725__mantis8827.sql new file mode 100644 index 000000000..d374d4f49 --- /dev/null +++ b/src/db/migration/V20170504_1725__mantis8827.sql @@ -0,0 +1,43 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE BOLETO ADD (PONTUACAOFRAUDE NUMBER(3))'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE CAJA ADD (PONTUACAOFRAUDE NUMBER(3))'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (PONTUACAOFRAUDEINI NUMBER(3))'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (PONTUACAOFRAUDEFIM NUMBER(3))'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (INDFIDELIDADE NUMBER(1))'; + exception when object_exists then null; +end; \ No newline at end of file