diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-06-24 20:39:06 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-06-24 20:39:06 -0400 |
| commit | 6efac784fcc1a2e83bb7b43fc7841448b5975cba (patch) | |
| tree | a083b3c8b86deca9c4f23bcb15cfafeec86924e8 /app/Schema/Postgres.php | |
| parent | 58c96b8c4ec3f326b25e6b55f133fc067345cd57 (diff) | |
Add timer for subtasks and remove settings for subtask time tracking
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 e32b0b9b..ac6ebf6f 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 = 55; +const VERSION = 56; + +function version_56($pdo) +{ + $pdo->exec('DELETE FROM "settings" WHERE "option"=\'subtask_time_tracking\''); +} function version_55($pdo) { |
