AdmMono/src/db/migration/V20181227_1831__mantis12884...

7 lines
299 B
SQL

declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
execute immediate 'create sequence LAST_WAR_VERSION_SEQ minvalue 1 maxvalue 9999999999999999999999999999 start with 1 increment by 1 nocache ORDER';
exception when object_exists then null;
end;