Customizing Issue Start Numbers
Added by Jeff Wilson about 16 years ago
Is there a way to customize Redmine to start at a number other than 1? I'd like to start a project at a high enough issue number to not add more digits over the course of a project - 10000 for example. Any help is appreciated!
Replies (1)
RE: Customizing Issue Start Numbers - Added by Eric Davis about 16 years ago
Jeff Wilson wrote:
Is there a way to customize Redmine to start at a number other than 1? I'd like to start a project at a high enough issue number to not add more digits over the course of a project - 10000 for example. Any help is appreciated!
Issue numbers are generated from the id
field in the issues table. You might be able to change your database to start incrementing at 10000 instead of 1. In MySQL there is a Next Autoindex property that can be set.
Eric