summaryrefslogtreecommitdiff
path: root/app/Schema/Postgres.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-01-22 12:40:53 -0500
committerFrederic Guillot <fred@kanboard.net>2017-01-22 12:40:53 -0500
commitb906b91733f3f5e473845855f3ae1b504aa5671b (patch)
tree55ec1c14974765420aa6122eeb9c4ad5f1452e3e /app/Schema/Postgres.php
parent8e18c39db9dbb0d91e28006b972dbe331e6500b4 (diff)
Fix typos in PR #2950
Diffstat (limited to 'app/Schema/Postgres.php')
-rw-r--r--app/Schema/Postgres.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php
index 9c72141a..e7f89f82 100644
--- a/app/Schema/Postgres.php
+++ b/app/Schema/Postgres.php
@@ -12,7 +12,7 @@ function version_98(PDO $pdo)
{
$pdo->exec('ALTER TABLE "comments" ADD COLUMN date_modification BIGINT');
$pdo->exec('UPDATE "comments"
- SET date_modificaiton = date_creation
+ SET date_modification = date_creation
WHERE date_modification IS NULL');
}