mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-01-19 10:40:33 +01:00
22 lines
511 B
PHP
22 lines
511 B
PHP
<?php
|
|
|
|
include_once __DIR__.'/core.php';
|
|
|
|
// Controllo se è presente il campo nome in zz_groups
|
|
$has_nome = database()->columnExists('zz_groups', 'nome');
|
|
$has_name = database()->columnExists('zz_groups', 'name');
|
|
|
|
if ($has_name && $has_nome) {
|
|
$database->query('ALTER TABLE `zz_groups` DROP `name`');
|
|
}
|
|
|
|
// File e cartelle deprecate
|
|
$files = [
|
|
'modules/interventi/src/API/v1/Articoli.php',
|
|
];
|
|
|
|
foreach ($files as $key => $value) {
|
|
$files[$key] = realpath(base_dir().'/'.$value);
|
|
}
|
|
|
|
delete($files); |