如何在 Bugzilla 中播种 Bug 编号?
对于新的 Bugzilla 安装,我们希望将错误编号设置为 1 以外的值。 有没有办法做到这一点?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据响应,以下 MySQL 命令将执行此操作:
其中 100 是新的种子号。
以下是 Bugzilla 架构 的链接。
Based on the responses, the following MySQL command will do it:
where 100 is the new seed number.
Here's the link to the Bugzilla schema.
我不确定 Bugzilla 的后端,但如果它使用 SQL 数据库,您应该能够找到控制 bug ID 号的表并将自动增量值设置为其他值。 也就是说,如果 Bugzilla 使用自动增量。
但我没有 Bugzilla 的副本来提供更多信息。
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.
我相信这是“bug”表中的自动增量值。
为了强制它以预定义值开始,
在 MYSQL 中,您需要...
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 ...