如何在 Bugzilla 中播种 Bug 编号?

发布于 2024-07-08 07:35:37 字数 57 浏览 4 评论 0原文

对于新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

荭秂 2024-07-15 07:35:37

根据响应,以下 MySQL 命令将执行此操作:

ALTER TABLE bugs AUTO_INCREMENT = 100;

其中 100 是新的种子号。

以下是 Bugzilla 架构 的链接。

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.

笑忘罢 2024-07-15 07:35:37

我不确定 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.

野の 2024-07-15 07:35:37

我相信这是“bug”表中的自动增量值。

为了强制它以预定义值开始,

在 MYSQL 中,您需要...

  • 关闭该字段的自动增量。
  • 插入一条记录,并将 bug_id 设置为起点。
  • 重新打开自动增量。

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 ...

  • switch off autoincrement on this field.
  • insert a record with a bug_id set to your starting point.
  • switch the autoincrement back on.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文