mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-27 00:06:14 +01:00
11 lines
367 B
PHP
11 lines
367 B
PHP
|
<?php
|
||
|
|
||
|
/*Fix per file sql di update aggiornato dopo rilascio 2.4.35*/
|
||
|
$has_column = null;
|
||
|
$col_righe = $database->fetchArray('SHOW COLUMNS FROM `zz_groups`');
|
||
|
$has_column = array_search('id_module_start', array_column($col_righe, 'Field'));
|
||
|
if (empty($has_column)) {
|
||
|
$database->query('ALTER TABLE `zz_groups` ADD `id_module_start` INT NULL AFTER `editable`');
|
||
|
}
|
||
|
|