diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-24 21:22:32 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-02-24 21:22:32 -0500 |
commit | 44fc9c081fb7561b7b02115f9b2a6eb0349d2201 (patch) | |
tree | 314249cc9a8dfc23ecb2d1bcc089362418698a96 /models/schema.php | |
parent | 565290fbf9e3727655921a969550167aa59a6e24 (diff) |
Add story points for tasks
Diffstat (limited to 'models/schema.php')
-rw-r--r-- | models/schema.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/models/schema.php b/models/schema.php index 66571bbe..e06271b3 100644 --- a/models/schema.php +++ b/models/schema.php @@ -2,6 +2,11 @@ namespace Schema; +function version_5($pdo) +{ + $pdo->exec("ALTER TABLE tasks ADD column score INTEGER"); +} + function version_4($pdo) { $pdo->exec("ALTER TABLE config ADD column timezone TEXT DEFAULT 'UTC'"); |