You are not logged in.
Pages: 1
Bonjour,
Suite à la monté de version j'ai eu ces erreurs, comment les corriger ?
/var/www/html/glpi# php bin/console database:check_schema_integrity
Le schéma diffère pour la table "glpi_items_softwarelicenses".
--- Schéma de base de données attendu
+++ Schéma de base de données actuel
@@ @@
`itemtype` varchar(100) NOT NULL,
`softwarelicenses_id` int NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
+ KEY `computers_id` (`items_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
- KEY `item` (`itemtype`,`items_id`),
KEY `softwarelicenses_id` (`softwarelicenses_id`)
)
Le schéma diffère pour la table "glpi_items_softwareversions".
--- Schéma de base de données attendu
+++ Schéma de base de données actuel
@@ @@
`itemtype` varchar(100) NOT NULL,
`softwareversions_id` int NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
- UNIQUE KEY `unicity` (`itemtype`,`items_id`,`softwareversions_id`),
KEY `computers_info` (`entities_id`,`is_template_item`,`is_deleted_item`),
KEY `date_install` (`date_install`),
KEY `is_deleted_item` (`is_deleted_item`),
Le schéma diffère pour la table "glpi_impactitems".
--- Schéma de base de données attendu
+++ Schéma de base de données actuel
@@ @@
CREATE TABLE `glpi_impactitems` (
`id` int NOT NULL AUTO_INCREMENT,
- `impactcontexts_id` int unsigned NOT NULL DEFAULT 0,
- `is_slave` tinyint NOT NULL DEFAULT 1,
+ `depends_color` varchar(255) NOT NULL DEFAULT '',
+ `impact_and_depends_color` varchar(255) NOT NULL DEFAULT '',
+ `impact_color` varchar(255) NOT NULL DEFAULT '',
`items_id` int NOT NULL DEFAULT 0,
`itemtype` varchar(255) NOT NULL DEFAULT '',
+ `max_depth` int NOT NULL DEFAULT 5,
+ `pan_x` float NOT NULL DEFAULT 0,
+ `pan_y` float NOT NULL DEFAULT 0,
`parent_id` int NOT NULL DEFAULT 0,
+ `position_x` float NOT NULL DEFAULT 0,
+ `position_y` float NOT NULL DEFAULT 0,
+ `show_depends` tinyint NOT NULL DEFAULT 1,
+ `show_impact` tinyint NOT NULL DEFAULT 1,
+ `zoom` float NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`),
- KEY `impactcontexts_id` (`impactcontexts_id`),
KEY `parent_id` (`parent_id`),
KEY `source` (`itemtype`,`items_id`)
Offline
Pages: 1