Is it possible to create a new project and set the number of the first issue to a number other than 1?
That is, if the project key is FOO, I want the first issue to be FOO-10000 instead of FOO-1.
The reason is that later I will perform an issue import from another server, for issues FOO-1 up to FOO-9500.
Thanks
Here is an update of what I did (albeit bit kludgy):
You can follow this article to change the starting number, although I'm not sure if it can impact your future desire to import other issues.
I'd recommend testing it on a test server first.
Kind regards
Jorden
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Two options
Create/import 9,999 issues, then bulk-delete them. Delete scrubs all trace of an issue, so you won't be creating any extra data in the database long-term.
Stop Jira, use SQL on the database to change the pcounter field in the project table for the project you are interested in, and restart. Normally, I'd tell you not to touch a database, but this is an exception - it's one of the few things that is safe and well-known. But you *must* have Jira offline when you do it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks to both @[deleted] @Nic Brough -Adaptavist-.
Touching the database is out of the question in my organization, so I will tackle the problem differently.
The approach is:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.