From c7569d1162a0ded80b3929604abd823a3980a43a Mon Sep 17 00:00:00 2001 From: Guite Date: Thu, 18 Aug 2016 06:51:55 +0200 Subject: [PATCH] update table adding new column on upgrade --- lib/Content/Installer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Content/Installer.php b/lib/Content/Installer.php index f3c6631ac..cc3f3c420 100644 --- a/lib/Content/Installer.php +++ b/lib/Content/Installer.php @@ -517,6 +517,9 @@ protected function contentUpgrade_4_2_0($oldVersion) protected function contentUpgrade_4_2_1($oldVersion) { + // update the database (add new column "metadescription") + DBUtil::changeTable('content_translatedpage'); + // add new variable(s) // variable to register a pagevar with breadcrumbs as array of array(url, title) $this->setVar('registerBreadcrumbs', false);