Skip to content

Commit

Permalink
fix(install): missing column reorder on upgrade
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed Apr 23, 2020
1 parent c19e4b1 commit 668ee2a
Show file tree
Hide file tree
Showing 2 changed files with 42 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 @@ -61,7 +61,8 @@ class PluginFormcreatorInstall {
'2.6.1' => '2.6.3',
'2.6.3' => '2.7',
'2.7' => '2.8',
'2.8' => '2.9',
'2.8' => '2.8.1',
'2.8.1' => '2.9',
'2.9' => '2.10'
];

Expand Down
40 changes: 40 additions & 0 deletions install/upgrade_to_2.8.1.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?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_8_1 {
/**
* @param Migration $migration
*/
public function upgrade(Migration $migration) {
$table = 'glpi_plugin_formcreator_issues';
$migration->changeField($table, 'name', 'name', 'string', ['after' => 'id', 'value' => '']);
}
}

0 comments on commit 668ee2a

Please sign in to comment.