Files
Benoît Burnichon 51023c5533 bump copyright year
2016-01-05 13:38:14 +01:00

47 lines
1.5 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2016 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Doctrine\DBAL\Driver\Connection;
class patchthesaurus_202 implements patchthesaurus_interface
{
public function patch($version, \DOMDocument $domct, \DOMDocument $domth, Connection $connbas, \unicode $unicode)
{
if ($version == "2.0.2") {
$th = $domth->documentElement;
$ct = $domct->documentElement;
$sql = "ALTER TABLE `pref` ADD `cterms_moddate` DATETIME";
$stmt = $connbas->prepare($sql);
$stmt->execute();
$stmt->closeCursor();
$sql = "ALTER TABLE `pref` ADD `thesaurus_moddate` DATETIME";
$stmt = $connbas->prepare($sql);
$stmt->execute();
$stmt->closeCursor();
$sql = "UPDATE pref SET thesaurus_moddate = :date1, cterms_moddate = :date2";
$stmt = $connbas->prepare($sql);
$stmt->execute([':date1' => $th->getAttribute("modification_date"), ':date2' => $ct->getAttribute("modification_date")]);
$stmt->closeCursor();
$ct->setAttribute("version", $version = "2.0.3");
$th->setAttribute("version", $version = "2.0.3");
$th->setAttribute("modification_date", date("YmdHis"));
$version = "2.0.3";
}
return($version);
}
}