diff --git a/src/db/migration/V20180222_1850__mantis9440.sql b/src/db/migration/V20180222_1850__mantis9440.sql new file mode 100644 index 000000000..e775da021 --- /dev/null +++ b/src/db/migration/V20180222_1850__mantis9440.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'CREATE SEQUENCE BPE_FOLIO INCREMENT BY 1 START WITH 1 MAXVALUE 9999999999999999999999999999 MINVALUE 1 NOCYCLE CACHE 20 NOORDER'; + exception when object_exists then null; +end; + \ No newline at end of file