Skip to content

Commit

Permalink
fix upgrade script
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Rolland committed Sep 5, 2023
1 parent 82337be commit c2be737
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions upgrade/upgrade-2.0.2.php → upgrade/upgrade-2.0.1.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @return bool
*/
function upgrade_module_2_0_2($module)
function upgrade_module_2_0_1($module)
{
$primaryKeyColumn = 'id_gdpr_consent';

Expand All @@ -37,5 +37,7 @@ function upgrade_module_2_0_2($module)
$primaryKeyColumn
);

return \Db::getInstance()->execute($query);
\Db::getInstance()->execute($query);

return true;
}

0 comments on commit c2be737

Please sign in to comment.