Add burndown chart

This commit is contained in:
Frederic Guillot
2015-04-11 23:01:17 -04:00
parent 7df055aff1
commit 9ca2ba2127
32 changed files with 351 additions and 26 deletions

View File

@@ -6,7 +6,12 @@ use PDO;
use Core\Security;
use Model\Link;
const VERSION = 44;
const VERSION = 45;
function version_45($pdo)
{
$pdo->exec('ALTER TABLE project_daily_summaries ADD COLUMN score INTEGER NOT NULL DEFAULT 0');
}
function version_44($pdo)
{