diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-04-11 23:01:17 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-04-11 23:01:17 -0400 |
| commit | 9ca2ba21272ddb1958e0b5b2f5842cde42508139 (patch) | |
| tree | c6db297008d728a44040af5804386802b457219e /app/Schema/Postgres.php | |
| parent | 7df055aff1e1056d87bb720531d60cb079805f94 (diff) | |
Add burndown chart
Diffstat (limited to 'app/Schema/Postgres.php')
| -rw-r--r-- | app/Schema/Postgres.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php index 80f29219..b5cf72a6 100644 --- a/app/Schema/Postgres.php +++ b/app/Schema/Postgres.php @@ -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) { |
