%PDF- %PDF-
Direktori : /var/www/projetos/suporte.iigd.com.br/install/migrations/update_9.5.x_to_10.0.0/ |
Current File : /var/www/projetos/suporte.iigd.com.br/install/migrations/update_9.5.x_to_10.0.0/recurrentchange.php |
<?php /** * --------------------------------------------------------------------- * * GLPI - Gestionnaire Libre de Parc Informatique * * http://glpi-project.org * * @copyright 2015-2024 Teclib' and contributors. * @copyright 2003-2014 by the INDEPNET Development Team. * @licence https://www.gnu.org/licenses/gpl-3.0.html * * --------------------------------------------------------------------- * * LICENSE * * This file is part of GLPI. * * This program 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 3 of the License, or * (at your option) any later version. * * This program 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 this program. If not, see <https://www.gnu.org/licenses/>. * * --------------------------------------------------------------------- */ /** * @var \DBmysql $DB * @var \Migration $migration */ $migration->displayMessage("Adding recurrent changes"); $default_charset = DBConnection::getDefaultCharset(); $default_collation = DBConnection::getDefaultCollation(); $default_key_sign = DBConnection::getDefaultPrimaryKeySignOption(); $DB->updateOrDie( 'glpi_crontasks', [ 'itemtype' => 'CommonITILRecurrentCron', 'name' => 'RecurrentItems' ], [ 'itemtype' => 'TicketRecurrent', 'name' => 'ticketrecurrent', ], "CommonITILReccurent crontask" ); $recurrent_change_table = 'glpi_recurrentchanges'; if (!$DB->tableExists($recurrent_change_table)) { $DB->doQueryOrDie("CREATE TABLE `$recurrent_change_table` ( `id` int {$default_key_sign} NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `comment` text, `entities_id` int {$default_key_sign} NOT NULL DEFAULT '0', `is_recursive` tinyint NOT NULL DEFAULT '0', `is_active` tinyint NOT NULL DEFAULT '0', `changetemplates_id` int {$default_key_sign} NOT NULL DEFAULT '0', `begin_date` timestamp NULL DEFAULT NULL, `periodicity` varchar(255) DEFAULT NULL, `create_before` int NOT NULL DEFAULT '0', `next_creation_date` timestamp NULL DEFAULT NULL, `calendars_id` int {$default_key_sign} NOT NULL DEFAULT '0', `end_date` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `entities_id` (`entities_id`), KEY `is_recursive` (`is_recursive`), KEY `is_active` (`is_active`), KEY `changetemplates_id` (`changetemplates_id`), KEY `next_creation_date` (`next_creation_date`) ) ENGINE = InnoDB ROW_FORMAT = DYNAMIC DEFAULT CHARSET = {$default_charset} COLLATE = {$default_collation};"); } $migration->addRight('recurrentchange', ALLSTANDARDRIGHT, [ 'change' => UPDATE, 'ticketrecurrent' => UPDATE, ]);