Skip to content

Commit

Permalink
fix(issue): repopulate table on upgrade
Browse files Browse the repository at this point in the history
counters were improved and data in the table must be rebuild

Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed Aug 11, 2020
1 parent a7c7f1a commit 90727ae
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 1 deletion.
3 changes: 2 additions & 1 deletion install/install.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ class PluginFormcreatorInstall {
'2.7' => '2.8',
'2.8' => '2.8.1',
'2.8.1' => '2.9',
'2.9' => '2.10'
'2.9' => '2.10',
'2.10' => '2.10.2',
];

/**
Expand Down
48 changes: 48 additions & 0 deletions install/upgrade_to_2.10.2.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?php
/**
* ---------------------------------------------------------------------
* Formcreator is a plugin which allows creation of custom forms of
* easy access.
* ---------------------------------------------------------------------
* LICENSE
*
* This file is part of Formcreator.
*
* Formcreator is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Formcreator is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Formcreator. If not, see <http://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------
* @copyright Copyright © 2011 - 2019 Teclib'
* @license http://www.gnu.org/licenses/gpl.txt GPLv3+
* @link https://github.com/pluginsGLPI/formcreator/
* @link https://pluginsglpi.github.io/formcreator/
* @link http://plugins.glpi-project.org/#/plugin/formcreator
* ---------------------------------------------------------------------
*/
class PluginFormcreatorUpgradeTo2_10_2 {

protected $migration;

/**
* @param Migration $migration
*/
public function upgrade(Migration $migration) {
global $DB;

$this->migration = $migration;

// Versioin 2.10.2 contains fixes on counters requiring repopulation of issues table
$table = 'glpi_plugin_formcreator_issues';
$DB->query("TRUNCATE `$table`");
PluginFormcreatorIssue::cronSyncIssues(new CronTask());
}
}

0 comments on commit 90727ae

Please sign in to comment.