We tried using the Scrumburndownplugin along with trac (0.11stable-r7507) and PostgreSQL. We got some problems to get it running, therefore here is our soulution:
1) Create manually in PGAdmin3 the table
-- Table: burndown
-- DROP TABLE burndown;
CREATE TABLE burndown
(
id serial NOT NULL,
component_name text NOT NULL,
milestone_name text NOT NULL,
date text,
week text,
"year" text,
hours_remaining integer NOT NULL
)
WITH OIDS;
And use our Plugins: burndown.zip + timandestimation.zip
[Update]
I just ran into some more errors:
in the burndown table you have to remove HOURS_REMAINING and create it anew as a float8 data type.
This entry was posted on Friday, October 24th, 2008 at 4:11 pm and is filed under Uncategorized. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.