diff --git a/src/db/migration/V20190905_1654__mantis15119.sql b/src/db/migration/V20190905_1654__mantis15119.sql index 01881185a..b9cd6ea5a 100644 --- a/src/db/migration/V20190905_1654__mantis15119.sql +++ b/src/db/migration/V20190905_1654__mantis15119.sql @@ -15,4 +15,12 @@ begin )'; exception when table_exists then null; +end; +/ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'CREATE SEQUENCE "CONF_TOTEM_SEQ" INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE'; + exception when object_exists then null; end; \ No newline at end of file