summaryrefslogtreecommitdiff
path: root/app/Schema/Postgres.php
diff options
context:
space:
mode:
authorLev Lazinskiy <lev@levlaz.org>2017-01-22 09:39:30 -0800
committerFrédéric Guillot <fred@kanboard.net>2017-01-22 12:39:30 -0500
commit8e18c39db9dbb0d91e28006b972dbe331e6500b4 (patch)
tree5a2f6bb37d355aafcf48f635b91b543d326d2686 /app/Schema/Postgres.php
parent67aca3c664dfe4a7616781216e868f9477f4963f (diff)
Add date_modification to comments (PR #2950)
Diffstat (limited to 'app/Schema/Postgres.php')
-rw-r--r--app/Schema/Postgres.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php
index 32a7a744..9c72141a 100644
--- a/app/Schema/Postgres.php
+++ b/app/Schema/Postgres.php
@@ -6,7 +6,15 @@ use PDO;
use Kanboard\Core\Security\Token;
use Kanboard\Core\Security\Role;
-const VERSION = 97;
+const VERSION = 98;
+
+function version_98(PDO $pdo)
+{
+ $pdo->exec('ALTER TABLE "comments" ADD COLUMN date_modification BIGINT');
+ $pdo->exec('UPDATE "comments"
+ SET date_modificaiton = date_creation
+ WHERE date_modification IS NULL');
+}
function version_97(PDO $pdo)
{