Windows上安装bugfree遇到报错的解决办法(下)

解决Bugfree注释的问题在bf_bug_action表里,

update bf_bug_action buginfo_id=80 where buginfo_id=240

bugfree可以删除action,方法是在bf_bug_action表里执行以下两句:

SET FOREIGN_KEY_CHECKS=0;

delete from bf_bug_action where id = 6448;

解决Bugfree附件的问题bf_test_file表里,

update `bf_test_file` target_id=80 where target_id=240

解决Bugfree中点击[编辑]、[解决]、[关闭],在bf_ettonbug_1表里,

update `bf_ettonbug_1` Set bug_id=80 where bug_id=240

delete from `bf_ettonbug_1`  where bug_id>81

解决bugfreeID自增的办法是:修改数据表里AUTO_INCREMENT的值。

用bugfree自带的导入、导出功能,也有不尽人意之处,比如新建 bug注释带着原bug的注释,导入者显示的是系统管理员。

******************************************************************

写在后面的话

Bugfree在2010年被宣布结束,目前禅道不支持3.0.x版本bugfree的导入,支持1.x和2.x和Redmine1.0.0。

原文地址:https://www.cnblogs.com/fengye151/p/11651215.html