diff --git a/src/db/migration/V20170320_1016__mantis7788.sql b/src/db/migration/V20170320_1016__mantis7788.sql new file mode 100644 index 000000000..e6b5542ff --- /dev/null +++ b/src/db/migration/V20170320_1016__mantis7788.sql @@ -0,0 +1,6 @@ +declare + dup_val_on_index exception; +begin + execute immediate 'ALTER TABLE CAJA MODIFY (INDINTEGRADOAG DEFAULT 0 )'; + exception when OTHERS then null; +end;