ralli / bz2redmine

Bugzilla to Redmine migration script
Other
13 stars 8 forks source link

bz2redmine creates invalid issues #1

Closed mfellinger closed 14 years ago

mfellinger commented 14 years ago

Database Version mysql Ver 14.12 Distrib 5.0.67, for suse-linux-gnu (x86_64) using readline 5.2 Ruby version 1.8.7 (x86_64-linux) Rails version 2.1.2 Redmine Vesion 0.8.6

Issues created by bz2redmine have a due-date of 0000-00-00. This would not validate when the issue is entered directly in Redmine, and leads to runtime errors in the Gantt chart.

ralli commented 14 years ago

Will fix that soon ...

for now you can issue an update statement like that against your redmine database:

update issues set due_date=null where due_date='0000-00-00'

I guess, you already did that :-)