...
Code Block | ||||
---|---|---|---|---|
| ||||
select to_char(dd, 'dd/MM HH:MI Day') as "Time", ( select cumulative from cumulative where start < dd and dd < now() order by start desc limit 1) as "Story Points" from generated_sprint_border_series |
Info |
---|
We format the date to string in a certain way to specify the Days of Week as it is important for reading the Burndown Chart |
Example of the output:
...
Full Code Recap
...