Reputation: 7691
We'd like to start our bug numbers to something other than 1 for a new Bugzilla installation. Is there a way to do this?
Upvotes: 2
Views: 2159
Reputation: 7691
Based on the responses, the following MySQL command will do it:
ALTER TABLE bugs AUTO_INCREMENT = 100;
where 100 is the new seed number.
Here's the link to the Bugzilla schema.
Upvotes: 5
Reputation: 5693
I believe it's an autoincrement value in the "bugs" table.
In order to force this to start at a predefined value,
in MYSQL, you'll need to ...
Upvotes: 0
Reputation: 116187
I'm not sure about Bugzilla's backend, but if it uses a SQL database, you should be able to find the table that controls the bug ID number and set the autoincrement value to something else. That is, if Bugzilla uses autoincrement.
But I don't have a copy of Bugzilla to provide more info.
Upvotes: 2