Sindbad~EG File Manager
--
-- ---------------------------------------------------------------------
--
-- GLPI - Gestionnaire Libre de Parc Informatique
--
-- http://glpi-project.org
--
-- @copyright 2015-2022 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/>.
--
-- ---------------------------------------------------------------------
--
### Dump table glpi_alerts
DROP TABLE IF EXISTS `glpi_alerts`;
CREATE TABLE `glpi_alerts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '0' COMMENT 'see define.php ALERT_* constant',
`date` timestamp NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`,`type`),
KEY `type` (`type`),
KEY `date` (`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_authldapreplicates
DROP TABLE IF EXISTS `glpi_authldapreplicates`;
CREATE TABLE `glpi_authldapreplicates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`authldaps_id` int(11) NOT NULL DEFAULT '0',
`host` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`port` int(11) NOT NULL DEFAULT '389',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `authldaps_id` (`authldaps_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_authldaps
DROP TABLE IF EXISTS `glpi_authldaps`;
CREATE TABLE `glpi_authldaps` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`host` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`basedn` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`rootdn` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`port` int(11) NOT NULL DEFAULT '389',
`condition` text COLLATE utf8_unicode_ci,
`login_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'uid',
`sync_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`use_tls` tinyint(1) NOT NULL DEFAULT '0',
`group_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`group_condition` text COLLATE utf8_unicode_ci,
`group_search_type` int(11) NOT NULL DEFAULT '0',
`group_member_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email1_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`realname_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`firstname_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone2_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`mobile_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`use_dn` tinyint(1) NOT NULL DEFAULT '1',
`time_offset` int(11) NOT NULL DEFAULT '0' COMMENT 'in seconds',
`deref_option` int(11) NOT NULL DEFAULT '0',
`title_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`category_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`language_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entity_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entity_condition` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`is_default` tinyint(1) NOT NULL DEFAULT '0',
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`rootdn_passwd` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`registration_number_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email2_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email3_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email4_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`location_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`responsible_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`pagesize` int(11) NOT NULL DEFAULT '0',
`ldap_maxlimit` int(11) NOT NULL DEFAULT '0',
`can_support_pagesize` tinyint(1) NOT NULL DEFAULT '0',
`picture_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`inventory_domain` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `is_default` (`is_default`),
KEY `is_active` (`is_active`),
KEY `date_creation` (`date_creation`),
KEY `sync_field` (`sync_field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_authmails
DROP TABLE IF EXISTS `glpi_authmails`;
CREATE TABLE `glpi_authmails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`connect_string` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`host` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`is_active` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `is_active` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_apiclients
DROP TABLE IF EXISTS `glpi_apiclients`;
CREATE TABLE `glpi_apiclients` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` INT(11) NOT NULL DEFAULT '0',
`is_recursive` TINYINT(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`is_active` TINYINT(1) NOT NULL DEFAULT '0',
`ipv4_range_start` BIGINT DEFAULT NULL,
`ipv4_range_end` BIGINT DEFAULT NULL,
`ipv6` VARCHAR(255) DEFAULT NULL,
`app_token` VARCHAR(255) DEFAULT NULL,
`app_token_date` timestamp NULL DEFAULT NULL,
`dolog_method` TINYINT NOT NULL DEFAULT '0',
`comment` TEXT,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `is_active` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_autoupdatesystems
DROP TABLE IF EXISTS `glpi_autoupdatesystems`;
CREATE TABLE `glpi_autoupdatesystems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_blacklistedmailcontents
DROP TABLE IF EXISTS `glpi_blacklistedmailcontents`;
CREATE TABLE `glpi_blacklistedmailcontents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8_unicode_ci,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_blacklists
DROP TABLE IF EXISTS `glpi_blacklists`;
CREATE TABLE `glpi_blacklists` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_savedsearches
DROP TABLE IF EXISTS `glpi_savedsearches`;
CREATE TABLE `glpi_savedsearches` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`type` int(11) NOT NULL DEFAULT '0' COMMENT 'see SavedSearch:: constants',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`is_private` tinyint(1) NOT NULL DEFAULT '1',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`query` text COLLATE utf8_unicode_ci,
`last_execution_time` int(11) DEFAULT NULL,
`do_count` tinyint(1) NOT NULL DEFAULT '2' COMMENT 'Do or do not count results on list display see SavedSearch::COUNT_* constants',
`last_execution_date` timestamp NULL DEFAULT NULL,
`counter` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `itemtype` (`itemtype`),
KEY `entities_id` (`entities_id`),
KEY `users_id` (`users_id`),
KEY `is_private` (`is_private`),
KEY `is_recursive` (`is_recursive`),
KEY `last_execution_time` (`last_execution_time`),
KEY `last_execution_date` (`last_execution_date`),
KEY `do_count` (`do_count`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_savedsearches_users
DROP TABLE IF EXISTS `glpi_savedsearches_users`;
CREATE TABLE `glpi_savedsearches_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`users_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`savedsearches_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`users_id`,`itemtype`),
KEY `savedsearches_id` (`savedsearches_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_savedsearches_alerts
DROP TABLE IF EXISTS `glpi_savedsearches_alerts`;
CREATE TABLE `glpi_savedsearches_alerts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`savedsearches_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`operator` tinyint(1) NOT NULL,
`value` int(11) NOT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_active` (`is_active`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
UNIQUE KEY `unicity` (`savedsearches_id`,`operator`, `value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_budgets
DROP TABLE IF EXISTS `glpi_budgets`;
CREATE TABLE `glpi_budgets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`begin_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`value` decimal(20,4) NOT NULL DEFAULT '0.0000',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`budgettypes_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_recursive` (`is_recursive`),
KEY `entities_id` (`entities_id`),
KEY `is_deleted` (`is_deleted`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `is_template` (`is_template`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `locations_id` (`locations_id`),
KEY `budgettypes_id` (`budgettypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_budgettypes
DROP TABLE IF EXISTS `glpi_budgettypes`;
CREATE TABLE `glpi_budgettypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_businesscriticities
DROP TABLE IF EXISTS `glpi_businesscriticities`;
CREATE TABLE `glpi_businesscriticities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`businesscriticities_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`),
UNIQUE KEY `unicity` (`businesscriticities_id`,`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_calendars
DROP TABLE IF EXISTS `glpi_calendars`;
CREATE TABLE `glpi_calendars` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`cache_duration` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_calendars_holidays
DROP TABLE IF EXISTS `glpi_calendars_holidays`;
CREATE TABLE `glpi_calendars_holidays` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`calendars_id` int(11) NOT NULL DEFAULT '0',
`holidays_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`calendars_id`,`holidays_id`),
KEY `holidays_id` (`holidays_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_calendarsegments
DROP TABLE IF EXISTS `glpi_calendarsegments`;
CREATE TABLE `glpi_calendarsegments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`calendars_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`day` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'numer of the day based on date(w)',
`begin` time DEFAULT NULL,
`end` time DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `calendars_id` (`calendars_id`),
KEY `day` (`day`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_cartridgeitems
DROP TABLE IF EXISTS `glpi_cartridgeitems`;
CREATE TABLE `glpi_cartridgeitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ref` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`cartridgeitemtypes_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`alarm_threshold` int(11) NOT NULL DEFAULT '10',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `locations_id` (`locations_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `cartridgeitemtypes_id` (`cartridgeitemtypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `alarm_threshold` (`alarm_threshold`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_cartridgeitems_printermodels
DROP TABLE IF EXISTS `glpi_cartridgeitems_printermodels`;
CREATE TABLE `glpi_cartridgeitems_printermodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cartridgeitems_id` int(11) NOT NULL DEFAULT '0',
`printermodels_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`printermodels_id`,`cartridgeitems_id`),
KEY `cartridgeitems_id` (`cartridgeitems_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_cartridgeitemtypes
DROP TABLE IF EXISTS `glpi_cartridgeitemtypes`;
CREATE TABLE `glpi_cartridgeitemtypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_cartridges
DROP TABLE IF EXISTS `glpi_cartridges`;
CREATE TABLE `glpi_cartridges` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`cartridgeitems_id` int(11) NOT NULL DEFAULT '0',
`printers_id` int(11) NOT NULL DEFAULT '0',
`date_in` date DEFAULT NULL,
`date_use` date DEFAULT NULL,
`date_out` date DEFAULT NULL,
`pages` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `cartridgeitems_id` (`cartridgeitems_id`),
KEY `printers_id` (`printers_id`),
KEY `entities_id` (`entities_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_certificates
DROP TABLE IF EXISTS `glpi_certificates`;
CREATE TABLE `glpi_certificates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`certificatetypes_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to glpi_certificatetypes (id)',
`dns_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`dns_suffix` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to glpi_users (id)',
`groups_id_tech` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to glpi_groups (id)',
`locations_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to glpi_locations (id)',
`manufacturers_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to glpi_manufacturers (id)',
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`is_autosign` tinyint(1) NOT NULL DEFAULT '0',
`date_expiration` date DEFAULT NULL,
`states_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to states (id)',
`command` text COLLATE utf8_unicode_ci,
`certificate_request` text COLLATE utf8_unicode_ci,
`certificate_item` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_template` (`is_template`),
KEY `is_deleted` (`is_deleted`),
KEY `certificatetypes_id` (`certificatetypes_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `states_id` (`states_id`),
KEY `date_creation` (`date_creation`),
KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_certificates_items
DROP TABLE IF EXISTS `glpi_certificates_items`;
CREATE TABLE `glpi_certificates_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`certificates_id` int(11) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to various tables, according to itemtype (id)',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL COMMENT 'see .class.php file',
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`certificates_id`,`itemtype`,`items_id`),
KEY `device` (`items_id`,`itemtype`),
KEY `item` (`itemtype`,`items_id`),
KEY `date_creation` (`date_creation`),
KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_certificatetypes
DROP TABLE IF EXISTS `glpi_certificatetypes`;
CREATE TABLE `glpi_certificatetypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `name` (`name`),
KEY `date_creation` (`date_creation`),
KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changecosts
DROP TABLE IF EXISTS `glpi_changecosts`;
CREATE TABLE `glpi_changecosts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changes_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`begin_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`actiontime` int(11) NOT NULL DEFAULT '0',
`cost_time` decimal(20,4) NOT NULL DEFAULT '0.0000',
`cost_fixed` decimal(20,4) NOT NULL DEFAULT '0.0000',
`cost_material` decimal(20,4) NOT NULL DEFAULT '0.0000',
`budgets_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `changes_id` (`changes_id`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changes
DROP TABLE IF EXISTS `glpi_changes`;
CREATE TABLE `glpi_changes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1',
`content` longtext COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date` timestamp NULL DEFAULT NULL,
`solvedate` timestamp NULL DEFAULT NULL,
`closedate` timestamp NULL DEFAULT NULL,
`time_to_resolve` timestamp NULL DEFAULT NULL,
`users_id_recipient` int(11) NOT NULL DEFAULT '0',
`users_id_lastupdater` int(11) NOT NULL DEFAULT '0',
`urgency` int(11) NOT NULL DEFAULT '1',
`impact` int(11) NOT NULL DEFAULT '1',
`priority` int(11) NOT NULL DEFAULT '1',
`itilcategories_id` int(11) NOT NULL DEFAULT '0',
`impactcontent` longtext COLLATE utf8_unicode_ci,
`controlistcontent` longtext COLLATE utf8_unicode_ci,
`rolloutplancontent` longtext COLLATE utf8_unicode_ci,
`backoutplancontent` longtext COLLATE utf8_unicode_ci,
`checklistcontent` longtext COLLATE utf8_unicode_ci,
`global_validation` int(11) NOT NULL DEFAULT '1',
`validation_percent` int(11) NOT NULL DEFAULT '0',
`actiontime` int(11) NOT NULL DEFAULT '0',
`begin_waiting_date` timestamp NULL DEFAULT NULL,
`waiting_duration` int(11) NOT NULL DEFAULT '0',
`close_delay_stat` int(11) NOT NULL DEFAULT '0',
`solve_delay_stat` int(11) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `is_deleted` (`is_deleted`),
KEY `date` (`date`),
KEY `closedate` (`closedate`),
KEY `status` (`status`),
KEY `priority` (`priority`),
KEY `date_mod` (`date_mod`),
KEY `itilcategories_id` (`itilcategories_id`),
KEY `users_id_recipient` (`users_id_recipient`),
KEY `solvedate` (`solvedate`),
KEY `urgency` (`urgency`),
KEY `impact` (`impact`),
KEY `time_to_resolve` (`time_to_resolve`),
KEY `global_validation` (`global_validation`),
KEY `users_id_lastupdater` (`users_id_lastupdater`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changes_groups
DROP TABLE IF EXISTS `glpi_changes_groups`;
CREATE TABLE `glpi_changes_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changes_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changes_id`,`type`,`groups_id`),
KEY `group` (`groups_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changes_items
DROP TABLE IF EXISTS `glpi_changes_items`;
CREATE TABLE `glpi_changes_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changes_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changes_id`,`itemtype`,`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changes_problems
DROP TABLE IF EXISTS `glpi_changes_problems`;
CREATE TABLE `glpi_changes_problems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changes_id` int(11) NOT NULL DEFAULT '0',
`problems_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changes_id`,`problems_id`),
KEY `problems_id` (`problems_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changes_suppliers
DROP TABLE IF EXISTS `glpi_changes_suppliers`;
CREATE TABLE `glpi_changes_suppliers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changes_id` int(11) NOT NULL DEFAULT '0',
`suppliers_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`use_notification` tinyint(1) NOT NULL DEFAULT '0',
`alternative_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changes_id`,`type`,`suppliers_id`),
KEY `group` (`suppliers_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changes_tickets
DROP TABLE IF EXISTS `glpi_changes_tickets`;
CREATE TABLE `glpi_changes_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changes_id` int(11) NOT NULL DEFAULT '0',
`tickets_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changes_id`,`tickets_id`),
KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changes_users
DROP TABLE IF EXISTS `glpi_changes_users`;
CREATE TABLE `glpi_changes_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changes_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`use_notification` tinyint(1) NOT NULL DEFAULT '0',
`alternative_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changes_id`,`type`,`users_id`,`alternative_email`),
KEY `user` (`users_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changetasks
DROP TABLE IF EXISTS `glpi_changetasks`;
CREATE TABLE `glpi_changetasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`changes_id` int(11) NOT NULL DEFAULT '0',
`taskcategories_id` int(11) NOT NULL DEFAULT '0',
`state` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`begin` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`users_id_editor` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` INT(11) NOT NULL DEFAULT '0',
`content` longtext COLLATE utf8_unicode_ci,
`actiontime` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`tasktemplates_id` int(11) NOT NULL DEFAULT '0',
`timeline_position` tinyint(1) NOT NULL DEFAULT '0',
`is_private` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `uuid` (`uuid`),
KEY `changes_id` (`changes_id`),
KEY `state` (`state`),
KEY `users_id` (`users_id`),
KEY `users_id_editor` (`users_id_editor`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `date` (`date`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `begin` (`begin`),
KEY `end` (`end`),
KEY `taskcategories_id` (`taskcategories_id`),
KEY `tasktemplates_id` (`tasktemplates_id`),
KEY `is_private` (`is_private`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changevalidations
DROP TABLE IF EXISTS `glpi_changevalidations`;
CREATE TABLE `glpi_changevalidations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`changes_id` int(11) NOT NULL DEFAULT '0',
`users_id_validate` int(11) NOT NULL DEFAULT '0',
`comment_submission` text COLLATE utf8_unicode_ci,
`comment_validation` text COLLATE utf8_unicode_ci,
`status` int(11) NOT NULL DEFAULT '2',
`submission_date` timestamp NULL DEFAULT NULL,
`validation_date` timestamp NULL DEFAULT NULL,
`timeline_position` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `users_id` (`users_id`),
KEY `users_id_validate` (`users_id_validate`),
KEY `changes_id` (`changes_id`),
KEY `submission_date` (`submission_date`),
KEY `validation_date` (`validation_date`),
KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_computerantiviruses
DROP TABLE IF EXISTS `glpi_computerantiviruses`;
CREATE TABLE `glpi_computerantiviruses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`computers_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) DEFAULT NULL,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`antivirus_version` varchar(255) DEFAULT NULL,
`signature_version` varchar(255) DEFAULT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_uptodate` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_expiration` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `antivirus_version` (`antivirus_version`),
KEY `signature_version` (`signature_version`),
KEY `is_active` (`is_active`),
KEY `is_uptodate` (`is_uptodate`),
KEY `is_dynamic` (`is_dynamic`),
KEY `is_deleted` (`is_deleted`),
KEY `computers_id` (`computers_id`),
KEY `date_expiration` (`date_expiration`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_disks
DROP TABLE IF EXISTS `glpi_items_disks`;
CREATE TABLE `glpi_items_disks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`device` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`mountpoint` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`filesystems_id` int(11) NOT NULL DEFAULT '0',
`totalsize` int(11) NOT NULL DEFAULT '0',
`freesize` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`encryption_status` int(11) NOT NULL DEFAULT '0',
`encryption_tool` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`encryption_algorithm` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`encryption_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `device` (`device`),
KEY `mountpoint` (`mountpoint`),
KEY `totalsize` (`totalsize`),
KEY `freesize` (`freesize`),
KEY `itemtype` (`itemtype`),
KEY `items_id` (`items_id`),
KEY `item` (`itemtype`, `items_id`),
KEY `filesystems_id` (`filesystems_id`),
KEY `entities_id` (`entities_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_computermodels
DROP TABLE IF EXISTS `glpi_computermodels`;
CREATE TABLE `glpi_computermodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`required_units` int(11) NOT NULL DEFAULT '1',
`depth` float NOT NULL DEFAULT 1,
`power_connections` int(11) NOT NULL DEFAULT '0',
`power_consumption` int(11) NOT NULL DEFAULT '0',
`is_half_rack` tinyint(1) NOT NULL DEFAULT '0',
`picture_front` text COLLATE utf8_unicode_ci,
`picture_rear` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_computers
DROP TABLE IF EXISTS `glpi_computers`;
CREATE TABLE `glpi_computers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`autoupdatesystems_id` int(11) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`networks_id` int(11) NOT NULL DEFAULT '0',
`computermodels_id` int(11) NOT NULL DEFAULT '0',
`computertypes_id` int(11) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`ticket_tco` decimal(20,4) DEFAULT '0.0000',
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `computermodels_id` (`computermodels_id`),
KEY `networks_id` (`networks_id`),
KEY `states_id` (`states_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `computertypes_id` (`computertypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `uuid` (`uuid`),
KEY `date_creation` (`date_creation`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_computers_items
DROP TABLE IF EXISTS `glpi_computers_items`;
CREATE TABLE `glpi_computers_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to various table, according to itemtype (ID)',
`computers_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`computers_id`),
KEY `item` (`itemtype`,`items_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Previously glpi_computers_softwarelicenses < 9.5.0
### Dump table glpi_items_softwarelicenses
DROP TABLE IF EXISTS `glpi_items_softwarelicenses`;
CREATE TABLE `glpi_items_softwarelicenses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) NOT NULL,
`softwarelicenses_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `items_id` (`items_id`),
KEY `itemtype` (`itemtype`),
KEY `item` (`itemtype`, `items_id`),
KEY `softwarelicenses_id` (`softwarelicenses_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Previously glpi_computers_softwareversions < 9.5.0
### Dump table glpi_items_softwareversions
DROP TABLE IF EXISTS `glpi_items_softwareversions`;
CREATE TABLE `glpi_items_softwareversions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) NOT NULL,
`softwareversions_id` int(11) NOT NULL DEFAULT '0',
`is_deleted_item` tinyint(1) NOT NULL DEFAULT '0',
`is_template_item` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_install` date DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`, `items_id` ,`softwareversions_id`),
KEY `items_id` (`items_id`),
KEY `itemtype` (`itemtype`),
KEY `item` (`itemtype`, `items_id`),
KEY `softwareversions_id` (`softwareversions_id`),
KEY `computers_info` (`entities_id`,`is_template_item`,`is_deleted_item`),
KEY `is_template` (`is_template_item`),
KEY `is_deleted` (`is_deleted_item`),
KEY `is_dynamic` (`is_dynamic`),
KEY `date_install` (`date_install`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_computertypes
DROP TABLE IF EXISTS `glpi_computertypes`;
CREATE TABLE `glpi_computertypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_computervirtualmachines
DROP TABLE IF EXISTS `glpi_computervirtualmachines`;
CREATE TABLE `glpi_computervirtualmachines` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`computers_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`virtualmachinestates_id` int(11) NOT NULL DEFAULT '0',
`virtualmachinesystems_id` int(11) NOT NULL DEFAULT '0',
`virtualmachinetypes_id` int(11) NOT NULL DEFAULT '0',
`uuid` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`vcpu` int(11) NOT NULL DEFAULT '0',
`ram` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `computers_id` (`computers_id`),
KEY `entities_id` (`entities_id`),
KEY `name` (`name`),
KEY `virtualmachinestates_id` (`virtualmachinestates_id`),
KEY `virtualmachinesystems_id` (`virtualmachinesystems_id`),
KEY `vcpu` (`vcpu`),
KEY `ram` (`ram`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `uuid` (`uuid`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_operatingsystems
DROP TABLE IF EXISTS `glpi_items_operatingsystems`;
CREATE TABLE `glpi_items_operatingsystems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`operatingsystems_id` int(11) NOT NULL DEFAULT '0',
`operatingsystemversions_id` int(11) NOT NULL DEFAULT '0',
`operatingsystemservicepacks_id` int(11) NOT NULL DEFAULT '0',
`operatingsystemarchitectures_id` int(11) NOT NULL DEFAULT '0',
`operatingsystemkernelversions_id` int(11) NOT NULL DEFAULT '0',
`license_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`licenseid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`operatingsystemeditions_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `items_id` (`items_id`),
KEY `item` (`itemtype`,`items_id`),
KEY `operatingsystems_id` (`operatingsystems_id`),
KEY `operatingsystemservicepacks_id` (`operatingsystemservicepacks_id`),
KEY `operatingsystemversions_id` (`operatingsystemversions_id`),
KEY `operatingsystemarchitectures_id` (`operatingsystemarchitectures_id`),
KEY `operatingsystemkernelversions_id` (`operatingsystemkernelversions_id`),
KEY `operatingsystemeditions_id` (`operatingsystemeditions_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
UNIQUE KEY `unicity` (`items_id`,`itemtype`, `operatingsystems_id`, `operatingsystemarchitectures_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_operatingsystemkernels
DROP TABLE IF EXISTS `glpi_operatingsystemkernels`;
CREATE TABLE `glpi_operatingsystemkernels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_operatingsystemkernelversions
DROP TABLE IF EXISTS `glpi_operatingsystemkernelversions`;
CREATE TABLE `glpi_operatingsystemkernelversions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`operatingsystemkernels_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `operatingsystemkernels_id` (`operatingsystemkernels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_operatingsystemeditions
DROP TABLE IF EXISTS `glpi_operatingsystemeditions`;
CREATE TABLE `glpi_operatingsystemeditions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_configs
DROP TABLE IF EXISTS `glpi_configs`;
CREATE TABLE `glpi_configs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`context` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`context`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_impacts
DROP TABLE IF EXISTS `glpi_impactrelations`;
CREATE TABLE `glpi_impactrelations` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`itemtype_source` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`items_id_source` INT(11) NOT NULL DEFAULT '0',
`itemtype_impacted` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`items_id_impacted` INT(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (
`itemtype_source`,
`items_id_source`,
`itemtype_impacted`,
`items_id_impacted`
),
KEY `source_asset` (`itemtype_source`, `items_id_source`),
KEY `impacted_asset` (`itemtype_impacted`, `items_id_impacted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_impacts_compounds
DROP TABLE IF EXISTS `glpi_impactcompounds`;
CREATE TABLE `glpi_impactcompounds` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(255) NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`color` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_impactitems
DROP TABLE IF EXISTS `glpi_impactitems`;
CREATE TABLE `glpi_impactitems` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`itemtype` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`items_id` INT(11) NOT NULL DEFAULT '0',
`parent_id` INT(11) NOT NULL DEFAULT '0',
`impactcontexts_id` INT(11) NOT NULL DEFAULT '0',
`is_slave` TINYINT(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (
`itemtype`,
`items_id`
),
KEY `source` (`itemtype`, `items_id`),
KEY `parent_id` (`parent_id`),
KEY `impactcontexts_id` (`impactcontexts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_impactcontexts
DROP TABLE IF EXISTS `glpi_impactcontexts`;
CREATE TABLE `glpi_impactcontexts` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`positions` TEXT NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`zoom` FLOAT NOT NULL DEFAULT '0',
`pan_x` FLOAT NOT NULL DEFAULT '0',
`pan_y` FLOAT NOT NULL DEFAULT '0',
`impact_color` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`depends_color` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`impact_and_depends_color` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8_unicode_ci',
`show_depends` TINYINT(1) NOT NULL DEFAULT '1',
`show_impact` TINYINT(1) NOT NULL DEFAULT '1',
`max_depth` INT(11) NOT NULL DEFAULT '5',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_consumableitems
DROP TABLE IF EXISTS `glpi_consumableitems`;
CREATE TABLE `glpi_consumableitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ref` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`consumableitemtypes_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`alarm_threshold` int(11) NOT NULL DEFAULT '10',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `locations_id` (`locations_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `consumableitemtypes_id` (`consumableitemtypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `alarm_threshold` (`alarm_threshold`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `otherserial` (`otherserial`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_consumableitemtypes
DROP TABLE IF EXISTS `glpi_consumableitemtypes`;
CREATE TABLE `glpi_consumableitemtypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_consumables
DROP TABLE IF EXISTS `glpi_consumables`;
CREATE TABLE `glpi_consumables` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`consumableitems_id` int(11) NOT NULL DEFAULT '0',
`date_in` date DEFAULT NULL,
`date_out` date DEFAULT NULL,
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_in` (`date_in`),
KEY `date_out` (`date_out`),
KEY `consumableitems_id` (`consumableitems_id`),
KEY `entities_id` (`entities_id`),
KEY `item` (`itemtype`,`items_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contacts
DROP TABLE IF EXISTS `glpi_contacts`;
CREATE TABLE `glpi_contacts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`firstname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`mobile` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`fax` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contacttypes_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`usertitles_id` int(11) NOT NULL DEFAULT '0',
`address` text COLLATE utf8_unicode_ci,
`postcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`town` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `contacttypes_id` (`contacttypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `usertitles_id` (`usertitles_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contacts_suppliers
DROP TABLE IF EXISTS `glpi_contacts_suppliers`;
CREATE TABLE `glpi_contacts_suppliers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`suppliers_id` int(11) NOT NULL DEFAULT '0',
`contacts_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`suppliers_id`,`contacts_id`),
KEY `contacts_id` (`contacts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contacttypes
DROP TABLE IF EXISTS `glpi_contacttypes`;
CREATE TABLE `glpi_contacttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contractcosts
DROP TABLE IF EXISTS `glpi_contractcosts`;
CREATE TABLE `glpi_contractcosts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contracts_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`begin_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`cost` decimal(20,4) NOT NULL DEFAULT '0.0000',
`budgets_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `contracts_id` (`contracts_id`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contracts
DROP TABLE IF EXISTS `glpi_contracts`;
CREATE TABLE `glpi_contracts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contracttypes_id` int(11) NOT NULL DEFAULT '0',
`begin_date` date DEFAULT NULL,
`duration` int(11) NOT NULL DEFAULT '0',
`notice` int(11) NOT NULL DEFAULT '0',
`periodicity` int(11) NOT NULL DEFAULT '0',
`billing` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`accounting_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`week_begin_hour` time NOT NULL DEFAULT '00:00:00',
`week_end_hour` time NOT NULL DEFAULT '00:00:00',
`saturday_begin_hour` time NOT NULL DEFAULT '00:00:00',
`saturday_end_hour` time NOT NULL DEFAULT '00:00:00',
`use_saturday` tinyint(1) NOT NULL DEFAULT '0',
`monday_begin_hour` time NOT NULL DEFAULT '00:00:00',
`monday_end_hour` time NOT NULL DEFAULT '00:00:00',
`use_monday` tinyint(1) NOT NULL DEFAULT '0',
`max_links_allowed` int(11) NOT NULL DEFAULT '0',
`alert` int(11) NOT NULL DEFAULT '0',
`renewal` int(11) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `begin_date` (`begin_date`),
KEY `name` (`name`),
KEY `contracttypes_id` (`contracttypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_deleted` (`is_deleted`),
KEY `use_monday` (`use_monday`),
KEY `use_saturday` (`use_saturday`),
KEY `alert` (`alert`),
KEY `states_id` (`states_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contracts_items
DROP TABLE IF EXISTS `glpi_contracts_items`;
CREATE TABLE `glpi_contracts_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contracts_id` int(11) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`contracts_id`,`itemtype`,`items_id`),
KEY `FK_device` (`items_id`,`itemtype`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contracts_suppliers
DROP TABLE IF EXISTS `glpi_contracts_suppliers`;
CREATE TABLE `glpi_contracts_suppliers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`suppliers_id` int(11) NOT NULL DEFAULT '0',
`contracts_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`suppliers_id`,`contracts_id`),
KEY `contracts_id` (`contracts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_contracttypes
DROP TABLE IF EXISTS `glpi_contracttypes`;
CREATE TABLE `glpi_contracttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_crontasklogs
DROP TABLE IF EXISTS `glpi_crontasklogs`;
CREATE TABLE `glpi_crontasklogs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`crontasks_id` int(11) NOT NULL,
`crontasklogs_id` int(11) NOT NULL COMMENT 'id of ''start'' event',
`date` timestamp NOT NULL,
`state` int(11) NOT NULL COMMENT '0:start, 1:run, 2:stop',
`elapsed` float NOT NULL COMMENT 'time elapsed since start',
`volume` int(11) NOT NULL COMMENT 'for statistics',
`content` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'message',
PRIMARY KEY (`id`),
KEY `date` (`date`),
KEY `crontasks_id` (`crontasks_id`),
KEY `crontasklogs_id_state` (`crontasklogs_id`,`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_crontasks
DROP TABLE IF EXISTS `glpi_crontasks`;
CREATE TABLE `glpi_crontasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(150) COLLATE utf8_unicode_ci NOT NULL COMMENT 'task name',
`frequency` int(11) NOT NULL COMMENT 'second between launch',
`param` int(11) DEFAULT NULL COMMENT 'task specify parameter',
`state` int(11) NOT NULL DEFAULT '1' COMMENT '0:disabled, 1:waiting, 2:running',
`mode` int(11) NOT NULL DEFAULT '1' COMMENT '1:internal, 2:external',
`allowmode` int(11) NOT NULL DEFAULT '3' COMMENT '1:internal, 2:external, 3:both',
`hourmin` int(11) NOT NULL DEFAULT '0',
`hourmax` int(11) NOT NULL DEFAULT '24',
`logs_lifetime` int(11) NOT NULL DEFAULT '30' COMMENT 'number of days',
`lastrun` timestamp NULL DEFAULT NULL COMMENT 'last run date',
`lastcode` int(11) DEFAULT NULL COMMENT 'last run return code',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`name`),
KEY `mode` (`mode`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Task run by internal / external cron.';
### Dump table glpi_dashboards_dashboards
DROP TABLE IF EXISTS `glpi_dashboards_dashboards`;
CREATE TABLE `glpi_dashboards_dashboards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`key` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`context` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'core',
PRIMARY KEY (`id`),
UNIQUE KEY `key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_dashboards_items
DROP TABLE IF EXISTS `glpi_dashboards_items`;
CREATE TABLE `glpi_dashboards_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`dashboards_dashboards_id` int(11) NOT NULL,
`gridstack_id` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`card_id` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`x` int(11) DEFAULT NULL,
`y` int(11) DEFAULT NULL,
`width` int(11) DEFAULT NULL,
`height` int(11) DEFAULT NULL,
`card_options` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `dashboards_dashboards_id` (`dashboards_dashboards_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_dashboards_rights
DROP TABLE IF EXISTS `glpi_dashboards_rights`;
CREATE TABLE `glpi_dashboards_rights` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`dashboards_dashboards_id` int(11) NOT NULL,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `dashboards_dashboards_id` (`dashboards_dashboards_id`),
UNIQUE KEY `unicity` (`dashboards_dashboards_id`, `itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicecasemodels
DROP TABLE IF EXISTS `glpi_devicecasemodels`;
CREATE TABLE `glpi_devicecasemodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicecases
DROP TABLE IF EXISTS `glpi_devicecases`;
CREATE TABLE `glpi_devicecases` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicecasetypes_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicecasemodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `devicecasetypes_id` (`devicecasetypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicecasemodels_id` (`devicecasemodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicecasetypes
DROP TABLE IF EXISTS `glpi_devicecasetypes`;
CREATE TABLE `glpi_devicecasetypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicecontrolmodels
DROP TABLE IF EXISTS `glpi_devicecontrolmodels`;
CREATE TABLE `glpi_devicecontrolmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicecontrols
DROP TABLE IF EXISTS `glpi_devicecontrols`;
CREATE TABLE `glpi_devicecontrols` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_raid` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`interfacetypes_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicecontrolmodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `interfacetypes_id` (`interfacetypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicecontrolmodels_id` (`devicecontrolmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicedrivemodels
DROP TABLE IF EXISTS `glpi_devicedrivemodels`;
CREATE TABLE `glpi_devicedrivemodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicedrives
DROP TABLE IF EXISTS `glpi_devicedrives`;
CREATE TABLE `glpi_devicedrives` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_writer` tinyint(1) NOT NULL DEFAULT '1',
`speed` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`interfacetypes_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicedrivemodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `interfacetypes_id` (`interfacetypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicedrivemodels_id` (`devicedrivemodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicegenericmodels
DROP TABLE IF EXISTS `glpi_devicegenericmodels`;
CREATE TABLE `glpi_devicegenericmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicegenerics
DROP TABLE IF EXISTS `glpi_devicegenerics`;
CREATE TABLE `glpi_devicegenerics` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicegenerictypes_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`devicegenericmodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `devicegenerictypes_id` (`devicegenerictypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicegenericmodels_id` (`devicegenericmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicegenerictypes
DROP TABLE IF EXISTS `glpi_devicegenerictypes`;
CREATE TABLE `glpi_devicegenerictypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicegraphiccardmodels
DROP TABLE IF EXISTS `glpi_devicegraphiccardmodels`;
CREATE TABLE `glpi_devicegraphiccardmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicegraphiccards
DROP TABLE IF EXISTS `glpi_devicegraphiccards`;
CREATE TABLE `glpi_devicegraphiccards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`interfacetypes_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`memory_default` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicegraphiccardmodels_id` int(11) DEFAULT NULL,
`chipset` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `interfacetypes_id` (`interfacetypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `chipset` (`chipset`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicegraphiccardmodels_id` (`devicegraphiccardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_deviceharddrivemodels
DROP TABLE IF EXISTS `glpi_deviceharddrivemodels`;
CREATE TABLE `glpi_deviceharddrivemodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_deviceharddrives
DROP TABLE IF EXISTS `glpi_deviceharddrives`;
CREATE TABLE `glpi_deviceharddrives` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`rpm` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`interfacetypes_id` int(11) NOT NULL DEFAULT '0',
`cache` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`capacity_default` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`deviceharddrivemodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `interfacetypes_id` (`interfacetypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `deviceharddrivemodels_id` (`deviceharddrivemodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicememorymodels
DROP TABLE IF EXISTS `glpi_devicememorymodels`;
CREATE TABLE `glpi_devicememorymodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicememories
DROP TABLE IF EXISTS `glpi_devicememories`;
CREATE TABLE `glpi_devicememories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`frequence` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`size_default` int(11) NOT NULL DEFAULT '0',
`devicememorytypes_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicememorymodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `devicememorytypes_id` (`devicememorytypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicememorymodels_id` (`devicememorymodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicememorytypes
DROP TABLE IF EXISTS `glpi_devicememorytypes`;
CREATE TABLE `glpi_devicememorytypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicemotherboardmodels
DROP TABLE IF EXISTS `glpi_devicemotherboardmodels`;
CREATE TABLE `glpi_devicemotherboardmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicemotherboards
DROP TABLE IF EXISTS `glpi_devicemotherboards`;
CREATE TABLE `glpi_devicemotherboards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`chipset` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicemotherboardmodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicemotherboardmodels_id` (`devicemotherboardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicenetworkcardmodels
DROP TABLE IF EXISTS `glpi_devicenetworkcardmodels`;
CREATE TABLE `glpi_devicenetworkcardmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicenetworkcards
DROP TABLE IF EXISTS `glpi_devicenetworkcards`;
CREATE TABLE `glpi_devicenetworkcards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`bandwidth` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`mac_default` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicenetworkcardmodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicenetworkcardmodels_id` (`devicenetworkcardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicepcimodels
DROP TABLE IF EXISTS `glpi_devicepcimodels`;
CREATE TABLE `glpi_devicepcimodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicepcis
DROP TABLE IF EXISTS `glpi_devicepcis`;
CREATE TABLE `glpi_devicepcis` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`devicenetworkcardmodels_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicepcimodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `devicenetworkcardmodels_id` (`devicenetworkcardmodels_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicepcimodels_id` (`devicepcimodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicepowersupplymodels
DROP TABLE IF EXISTS `glpi_devicepowersupplymodels`;
CREATE TABLE `glpi_devicepowersupplymodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicepowersupplies
DROP TABLE IF EXISTS `glpi_devicepowersupplies`;
CREATE TABLE `glpi_devicepowersupplies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`power` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_atx` tinyint(1) NOT NULL DEFAULT '1',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicepowersupplymodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicepowersupplymodels_id` (`devicepowersupplymodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_deviceprocessormodels
DROP TABLE IF EXISTS `glpi_deviceprocessormodels`;
CREATE TABLE `glpi_deviceprocessormodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_deviceprocessors
DROP TABLE IF EXISTS `glpi_deviceprocessors`;
CREATE TABLE `glpi_deviceprocessors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`frequence` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`frequency_default` int(11) NOT NULL DEFAULT '0',
`nbcores_default` int(11) DEFAULT NULL,
`nbthreads_default` int(11) DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`deviceprocessormodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `deviceprocessormodels_id` (`deviceprocessormodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicesensors
DROP TABLE IF EXISTS `glpi_devicesensors`;
CREATE TABLE `glpi_devicesensors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicesensortypes_id` int(11) NOT NULL DEFAULT '0',
`devicesensormodels_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `devicesensortypes_id` (`devicesensortypes_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicesensormodels
DROP TABLE IF EXISTS `glpi_devicesensormodels`;
CREATE TABLE `glpi_devicesensormodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicesensortypes
DROP TABLE IF EXISTS `glpi_devicesensortypes`;
CREATE TABLE `glpi_devicesensortypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicesimcards
DROP TABLE IF EXISTS `glpi_devicesimcards`;
CREATE TABLE IF NOT EXISTS `glpi_devicesimcards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) DEFAULT NULL,
`comment` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`voltage` int(11) DEFAULT NULL,
`devicesimcardtypes_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`allow_voip` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `devicesimcardtypes_id` (`devicesimcardtypes_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `manufacturers_id` (`manufacturers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicesimcards
DROP TABLE IF EXISTS `glpi_items_devicesimcards`;
CREATE TABLE IF NOT EXISTS `glpi_items_devicesimcards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to various table, according to itemtype (id)',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`devicesimcards_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) NULL DEFAULT NULL,
`otherserial` varchar(255) NULL DEFAULT NULL,
`states_id` int(11) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`lines_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`pin` varchar(255) NOT NULL DEFAULT '',
`pin2` varchar(255) NOT NULL DEFAULT '',
`puk` varchar(255) NOT NULL DEFAULT '',
`puk2` varchar(255) NOT NULL DEFAULT '',
`msin` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `item` (`itemtype`,`items_id`),
KEY `devicesimcards_id` (`devicesimcards_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `states_id` (`states_id`),
KEY `locations_id` (`locations_id`),
KEY `lines_id` (`lines_id`),
KEY `users_id` (`users_id`),
KEY `groups_id` (`groups_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicesimcardtypes
DROP TABLE IF EXISTS `glpi_devicesimcardtypes`;
CREATE TABLE IF NOT EXISTS `glpi_devicesimcardtypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicesoundcardmodels
DROP TABLE IF EXISTS `glpi_devicesoundcardmodels`;
CREATE TABLE `glpi_devicesoundcardmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicesoundcards
DROP TABLE IF EXISTS `glpi_devicesoundcards`;
CREATE TABLE `glpi_devicesoundcards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicesoundcardmodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicesoundcardmodels_id` (`devicesoundcardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_displaypreferences
DROP TABLE IF EXISTS `glpi_displaypreferences`;
CREATE TABLE `glpi_displaypreferences` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`num` int(11) NOT NULL DEFAULT '0',
`rank` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`users_id`,`itemtype`,`num`),
KEY `rank` (`rank`),
KEY `num` (`num`),
KEY `itemtype` (`itemtype`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_documentcategories
DROP TABLE IF EXISTS `glpi_documentcategories`;
CREATE TABLE `glpi_documentcategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`documentcategories_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
UNIQUE KEY `unicity` (`documentcategories_id`,`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_documents
DROP TABLE IF EXISTS `glpi_documents`;
CREATE TABLE `glpi_documents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`filename` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'for display and transfert',
`filepath` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'file storage path',
`documentcategories_id` int(11) NOT NULL DEFAULT '0',
`mime` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`tickets_id` int(11) NOT NULL DEFAULT '0',
`sha1sum` char(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_blacklisted` tinyint(1) NOT NULL DEFAULT '0',
`tag` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `tickets_id` (`tickets_id`),
KEY `users_id` (`users_id`),
KEY `documentcategories_id` (`documentcategories_id`),
KEY `is_deleted` (`is_deleted`),
KEY `sha1sum` (`sha1sum`),
KEY `tag` (`tag`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_documents_items
DROP TABLE IF EXISTS `glpi_documents_items`;
CREATE TABLE `glpi_documents_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`documents_id` int(11) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`users_id` int(11) DEFAULT '0',
`timeline_position` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`documents_id`,`itemtype`,`items_id`,`timeline_position`),
KEY `item` (`itemtype`,`items_id`,`entities_id`,`is_recursive`),
KEY `users_id` (`users_id`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_documenttypes
DROP TABLE IF EXISTS `glpi_documenttypes`;
CREATE TABLE `glpi_documenttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ext` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`icon` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`mime` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_uploadable` tinyint(1) NOT NULL DEFAULT '1',
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`ext`),
KEY `name` (`name`),
KEY `is_uploadable` (`is_uploadable`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_domains
DROP TABLE IF EXISTS `glpi_domains`;
CREATE TABLE `glpi_domains` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`domaintypes_id` int(11) NOT NULL DEFAULT '0',
`date_expiration` timestamp NULL DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`others` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `domaintypes_id` (`domaintypes_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `date_mod` (`date_mod`),
KEY `is_deleted` (`is_deleted`),
KEY `date_expiration` (`date_expiration`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_dropdowntranslations
DROP TABLE IF EXISTS `glpi_dropdowntranslations`;
CREATE TABLE `glpi_dropdowntranslations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`language` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`field` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`,`language`,`field`),
KEY `typeid` (`itemtype`,`items_id`),
KEY `language` (`language`),
KEY `field` (`field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_entities
DROP TABLE IF EXISTS `glpi_entities`;
CREATE TABLE `glpi_entities` (
`id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`comment` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`sons_cache` longtext COLLATE utf8_unicode_ci,
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`address` text COLLATE utf8_unicode_ci,
`postcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`town` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phonenumber` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`fax` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`admin_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`admin_email_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`admin_reply` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`admin_reply_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`notification_subject_tag` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ldap_dn` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tag` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`authldaps_id` int(11) NOT NULL DEFAULT '0',
`mail_domain` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entity_ldapfilter` text COLLATE utf8_unicode_ci,
`mailing_signature` text COLLATE utf8_unicode_ci,
`cartridges_alert_repeat` int(11) NOT NULL DEFAULT '-2',
`consumables_alert_repeat` int(11) NOT NULL DEFAULT '-2',
`use_licenses_alert` int(11) NOT NULL DEFAULT '-2',
`send_licenses_alert_before_delay` int(11) NOT NULL DEFAULT '-2',
`use_certificates_alert` int(11) NOT NULL DEFAULT '-2',
`send_certificates_alert_before_delay` int(11) NOT NULL DEFAULT '-2',
`use_contracts_alert` int(11) NOT NULL DEFAULT '-2',
`send_contracts_alert_before_delay` int(11) NOT NULL DEFAULT '-2',
`use_infocoms_alert` int(11) NOT NULL DEFAULT '-2',
`send_infocoms_alert_before_delay` int(11) NOT NULL DEFAULT '-2',
`use_reservations_alert` int(11) NOT NULL DEFAULT '-2',
`use_domains_alert` int(11) NOT NULL DEFAULT '-2',
`send_domains_alert_close_expiries_delay` int(11) NOT NULL DEFAULT '-2',
`send_domains_alert_expired_delay` int(11) NOT NULL DEFAULT '-2',
`autoclose_delay` int(11) NOT NULL DEFAULT '-2',
`autopurge_delay` int(11) NOT NULL DEFAULT '-10',
`notclosed_delay` int(11) NOT NULL DEFAULT '-2',
`calendars_id` int(11) NOT NULL DEFAULT '-2',
`auto_assign_mode` int(11) NOT NULL DEFAULT '-2',
`tickettype` int(11) NOT NULL DEFAULT '-2',
`max_closedate` timestamp NULL DEFAULT NULL,
`inquest_config` int(11) NOT NULL DEFAULT '-2',
`inquest_rate` int(11) NOT NULL DEFAULT '0',
`inquest_delay` int(11) NOT NULL DEFAULT '-10',
`inquest_URL` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`autofill_warranty_date` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '-2',
`autofill_use_date` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '-2',
`autofill_buy_date` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '-2',
`autofill_delivery_date` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '-2',
`autofill_order_date` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '-2',
`tickettemplates_id` int(11) NOT NULL DEFAULT '-2',
`changetemplates_id` int(11) NOT NULL DEFAULT '-2',
`problemtemplates_id` int(11) NOT NULL DEFAULT '-2',
`entities_id_software` int(11) NOT NULL DEFAULT '-2',
`default_contract_alert` int(11) NOT NULL DEFAULT '-2',
`default_infocom_alert` int(11) NOT NULL DEFAULT '-2',
`default_cartridges_alarm_threshold` int(11) NOT NULL DEFAULT '-2',
`default_consumables_alarm_threshold` int(11) NOT NULL DEFAULT '-2',
`delay_send_emails` int(11) NOT NULL DEFAULT '-2',
`is_notif_enable_default` int(11) NOT NULL DEFAULT '-2',
`inquest_duration` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`autofill_decommission_date` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '-2',
`suppliers_as_private` int(11) NOT NULL DEFAULT '-2',
`anonymize_support_agents` int(11) NOT NULL DEFAULT '-2',
`enable_custom_css` int(11) NOT NULL DEFAULT '-2',
`custom_css_code` text COLLATE utf8_unicode_ci,
`latitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`longitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`altitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`entities_id`,`name`),
KEY `entities_id` (`entities_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `tickettemplates_id` (`tickettemplates_id`),
KEY `changetemplates_id` (`changetemplates_id`),
KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_entities_knowbaseitems
DROP TABLE IF EXISTS `glpi_entities_knowbaseitems`;
CREATE TABLE `glpi_entities_knowbaseitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `knowbaseitems_id` (`knowbaseitems_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_entities_reminders
DROP TABLE IF EXISTS `glpi_entities_reminders`;
CREATE TABLE `glpi_entities_reminders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`reminders_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `reminders_id` (`reminders_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_entities_rssfeeds
DROP TABLE IF EXISTS `glpi_entities_rssfeeds`;
CREATE TABLE `glpi_entities_rssfeeds` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rssfeeds_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `rssfeeds_id` (`rssfeeds_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_events
DROP TABLE IF EXISTS `glpi_events`;
CREATE TABLE `glpi_events` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date` timestamp NULL DEFAULT NULL,
`service` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`level` int(11) NOT NULL DEFAULT '0',
`message` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `date` (`date`),
KEY `level` (`level`),
KEY `item` (`type`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_fieldblacklists
DROP TABLE IF EXISTS `glpi_fieldblacklists`;
CREATE TABLE `glpi_fieldblacklists` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`field` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`value` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`itemtype` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_fieldunicities
DROP TABLE IF EXISTS `glpi_fieldunicities`;
CREATE TABLE `glpi_fieldunicities` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`fields` text COLLATE utf8_unicode_ci,
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`action_refuse` tinyint(1) NOT NULL DEFAULT '0',
`action_notify` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Stores field unicity criterias';
### Dump table glpi_filesystems
DROP TABLE IF EXISTS `glpi_filesystems`;
CREATE TABLE `glpi_filesystems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_fqdns
DROP TABLE IF EXISTS `glpi_fqdns`;
CREATE TABLE `glpi_fqdns` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`fqdn` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `name` (`name`),
KEY `fqdn` (`fqdn`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_groups
DROP TABLE IF EXISTS `glpi_groups`;
CREATE TABLE `glpi_groups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`ldap_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ldap_value` text COLLATE utf8_unicode_ci,
`ldap_group_dn` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`groups_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`is_requester` tinyint(1) NOT NULL DEFAULT '1',
`is_watcher` tinyint(1) NOT NULL DEFAULT '1',
`is_assign` tinyint(1) NOT NULL DEFAULT '1',
`is_task` tinyint(1) NOT NULL DEFAULT '1',
`is_notify` tinyint(1) NOT NULL DEFAULT '1',
`is_itemgroup` tinyint(1) NOT NULL DEFAULT '1',
`is_usergroup` tinyint(1) NOT NULL DEFAULT '1',
`is_manager` tinyint(1) NOT NULL DEFAULT '1',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `ldap_field` (`ldap_field`),
KEY `entities_id` (`entities_id`),
KEY `date_mod` (`date_mod`),
KEY `ldap_value` (`ldap_value`(200)),
KEY `ldap_group_dn` (`ldap_group_dn`(200)),
KEY `groups_id` (`groups_id`),
KEY `is_requester` (`is_requester`),
KEY `is_watcher` (`is_watcher`),
KEY `is_assign` (`is_assign`),
KEY `is_notify` (`is_notify`),
KEY `is_itemgroup` (`is_itemgroup`),
KEY `is_usergroup` (`is_usergroup`),
KEY `is_manager` (`is_manager`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_groups_knowbaseitems
DROP TABLE IF EXISTS `glpi_groups_knowbaseitems`;
CREATE TABLE `glpi_groups_knowbaseitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `knowbaseitems_id` (`knowbaseitems_id`),
KEY `groups_id` (`groups_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_groups_problems
DROP TABLE IF EXISTS `glpi_groups_problems`;
CREATE TABLE `glpi_groups_problems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problems_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`problems_id`,`type`,`groups_id`),
KEY `group` (`groups_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_groups_reminders
DROP TABLE IF EXISTS `glpi_groups_reminders`;
CREATE TABLE `glpi_groups_reminders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`reminders_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `reminders_id` (`reminders_id`),
KEY `groups_id` (`groups_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_groups_rssfeeds
DROP TABLE IF EXISTS `glpi_groups_rssfeeds`;
CREATE TABLE `glpi_groups_rssfeeds` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rssfeeds_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `rssfeeds_id` (`rssfeeds_id`),
KEY `groups_id` (`groups_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_groups_tickets
DROP TABLE IF EXISTS `glpi_groups_tickets`;
CREATE TABLE `glpi_groups_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`tickets_id`,`type`,`groups_id`),
KEY `group` (`groups_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_groups_users
DROP TABLE IF EXISTS `glpi_groups_users`;
CREATE TABLE `glpi_groups_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`is_manager` tinyint(1) NOT NULL DEFAULT '0',
`is_userdelegate` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`users_id`,`groups_id`),
KEY `groups_id` (`groups_id`),
KEY `is_manager` (`is_manager`),
KEY `is_userdelegate` (`is_userdelegate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_holidays
DROP TABLE IF EXISTS `glpi_holidays`;
CREATE TABLE `glpi_holidays` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`begin_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`is_perpetual` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `is_perpetual` (`is_perpetual`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_infocoms
DROP TABLE IF EXISTS `glpi_infocoms`;
CREATE TABLE `glpi_infocoms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`buy_date` date DEFAULT NULL,
`use_date` date DEFAULT NULL,
`warranty_duration` int(11) NOT NULL DEFAULT '0',
`warranty_info` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`suppliers_id` int(11) NOT NULL DEFAULT '0',
`order_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`delivery_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`immo_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` decimal(20,4) NOT NULL DEFAULT '0.0000',
`warranty_value` decimal(20,4) NOT NULL DEFAULT '0.0000',
`sink_time` int(11) NOT NULL DEFAULT '0',
`sink_type` int(11) NOT NULL DEFAULT '0',
`sink_coeff` float NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`bill` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`budgets_id` int(11) NOT NULL DEFAULT '0',
`alert` int(11) NOT NULL DEFAULT '0',
`order_date` date DEFAULT NULL,
`delivery_date` date DEFAULT NULL,
`inventory_date` date DEFAULT NULL,
`warranty_date` date DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`decommission_date` timestamp NULL DEFAULT NULL,
`businesscriticities_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`),
KEY `buy_date` (`buy_date`),
KEY `alert` (`alert`),
KEY `budgets_id` (`budgets_id`),
KEY `suppliers_id` (`suppliers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `businesscriticities_id` (`businesscriticities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_interfacetypes
DROP TABLE IF EXISTS `glpi_interfacetypes`;
CREATE TABLE `glpi_interfacetypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ipaddresses
DROP TABLE IF EXISTS `glpi_ipaddresses`;
CREATE TABLE `glpi_ipaddresses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`version` tinyint(3) unsigned DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`binary_0` int(10) unsigned NOT NULL DEFAULT '0',
`binary_1` int(10) unsigned NOT NULL DEFAULT '0',
`binary_2` int(10) unsigned NOT NULL DEFAULT '0',
`binary_3` int(10) unsigned NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`mainitems_id` int(11) NOT NULL DEFAULT '0',
`mainitemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `textual` (`name`),
KEY `binary` (`binary_0`,`binary_1`,`binary_2`,`binary_3`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `item` (`itemtype`,`items_id`,`is_deleted`),
KEY `mainitem` (`mainitemtype`,`mainitems_id`,`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ipaddresses_ipnetworks
DROP TABLE IF EXISTS `glpi_ipaddresses_ipnetworks`;
CREATE TABLE `glpi_ipaddresses_ipnetworks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ipaddresses_id` int(11) NOT NULL DEFAULT '0',
`ipnetworks_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`ipaddresses_id`,`ipnetworks_id`),
KEY `ipnetworks_id` (`ipnetworks_id`),
KEY `ipaddresses_id` (`ipaddresses_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ipnetworks
DROP TABLE IF EXISTS `glpi_ipnetworks`;
CREATE TABLE `glpi_ipnetworks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`ipnetworks_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`addressable` tinyint(1) NOT NULL DEFAULT '0',
`version` tinyint(3) unsigned DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`address` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`address_0` int(10) unsigned NOT NULL DEFAULT '0',
`address_1` int(10) unsigned NOT NULL DEFAULT '0',
`address_2` int(10) unsigned NOT NULL DEFAULT '0',
`address_3` int(10) unsigned NOT NULL DEFAULT '0',
`netmask` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`netmask_0` int(10) unsigned NOT NULL DEFAULT '0',
`netmask_1` int(10) unsigned NOT NULL DEFAULT '0',
`netmask_2` int(10) unsigned NOT NULL DEFAULT '0',
`netmask_3` int(10) unsigned NOT NULL DEFAULT '0',
`gateway` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`gateway_0` int(10) unsigned NOT NULL DEFAULT '0',
`gateway_1` int(10) unsigned NOT NULL DEFAULT '0',
`gateway_2` int(10) unsigned NOT NULL DEFAULT '0',
`gateway_3` int(10) unsigned NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `network_definition` (`entities_id`,`address`,`netmask`),
KEY `address` (`address_0`,`address_1`,`address_2`,`address_3`),
KEY `netmask` (`netmask_0`,`netmask_1`,`netmask_2`,`netmask_3`),
KEY `gateway` (`gateway_0`,`gateway_1`,`gateway_2`,`gateway_3`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ipnetworks_vlans
DROP TABLE IF EXISTS `glpi_ipnetworks_vlans`;
CREATE TABLE `glpi_ipnetworks_vlans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ipnetworks_id` int(11) NOT NULL DEFAULT '0',
`vlans_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `link` (`ipnetworks_id`,`vlans_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicecases
DROP TABLE IF EXISTS `glpi_items_devicecases`;
CREATE TABLE `glpi_items_devicecases` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicecases_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicecases_id` (`devicecases_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicecontrols
DROP TABLE IF EXISTS `glpi_items_devicecontrols`;
CREATE TABLE `glpi_items_devicecontrols` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicecontrols_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicecontrols_id` (`devicecontrols_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicedrives
DROP TABLE IF EXISTS `glpi_items_devicedrives`;
CREATE TABLE `glpi_items_devicedrives` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicedrives_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicedrives_id` (`devicedrives_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicegenerics
DROP TABLE IF EXISTS `glpi_items_devicegenerics`;
CREATE TABLE `glpi_items_devicegenerics` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicegenerics_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicegenerics_id` (`devicegenerics_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicegraphiccards
DROP TABLE IF EXISTS `glpi_items_devicegraphiccards`;
CREATE TABLE `glpi_items_devicegraphiccards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicegraphiccards_id` int(11) NOT NULL DEFAULT '0',
`memory` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicegraphiccards_id` (`devicegraphiccards_id`),
KEY `specificity` (`memory`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_deviceharddrives
DROP TABLE IF EXISTS `glpi_items_deviceharddrives`;
CREATE TABLE `glpi_items_deviceharddrives` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`deviceharddrives_id` int(11) NOT NULL DEFAULT '0',
`capacity` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `deviceharddrives_id` (`deviceharddrives_id`),
KEY `specificity` (`capacity`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicememories
DROP TABLE IF EXISTS `glpi_items_devicememories`;
CREATE TABLE `glpi_items_devicememories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicememories_id` int(11) NOT NULL DEFAULT '0',
`size` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicememories_id` (`devicememories_id`),
KEY `specificity` (`size`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicemotherboards
DROP TABLE IF EXISTS `glpi_items_devicemotherboards`;
CREATE TABLE `glpi_items_devicemotherboards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicemotherboards_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicemotherboards_id` (`devicemotherboards_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicenetworkcards
DROP TABLE IF EXISTS `glpi_items_devicenetworkcards`;
CREATE TABLE `glpi_items_devicenetworkcards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicenetworkcards_id` int(11) NOT NULL DEFAULT '0',
`mac` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicenetworkcards_id` (`devicenetworkcards_id`),
KEY `specificity` (`mac`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicepcis
DROP TABLE IF EXISTS `glpi_items_devicepcis`;
CREATE TABLE `glpi_items_devicepcis` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicepcis_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicepcis_id` (`devicepcis_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicepowersupplies
DROP TABLE IF EXISTS `glpi_items_devicepowersupplies`;
CREATE TABLE `glpi_items_devicepowersupplies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicepowersupplies_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicepowersupplies_id` (`devicepowersupplies_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_deviceprocessors
DROP TABLE IF EXISTS `glpi_items_deviceprocessors`;
CREATE TABLE `glpi_items_deviceprocessors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`deviceprocessors_id` int(11) NOT NULL DEFAULT '0',
`frequency` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`nbcores` int(11) DEFAULT NULL,
`nbthreads` int(11) DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `deviceprocessors_id` (`deviceprocessors_id`),
KEY `specificity` (`frequency`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `nbcores` (`nbcores`),
KEY `nbthreads` (`nbthreads`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicesensors
DROP TABLE IF EXISTS `glpi_items_devicesensors`;
CREATE TABLE `glpi_items_devicesensors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicesensors_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicesensors_id` (`devicesensors_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicesoundcards
DROP TABLE IF EXISTS `glpi_items_devicesoundcards`;
CREATE TABLE `glpi_items_devicesoundcards` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicesoundcards_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`busID` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicesoundcards_id` (`devicesoundcards_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `busID` (`busID`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`),
KEY `locations_id` (`locations_id`),
KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_problems
DROP TABLE IF EXISTS `glpi_items_problems`;
CREATE TABLE `glpi_items_problems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problems_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`problems_id`,`itemtype`,`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_projects
DROP TABLE IF EXISTS `glpi_items_projects`;
CREATE TABLE `glpi_items_projects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`projects_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`projects_id`,`itemtype`,`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_tickets
DROP TABLE IF EXISTS `glpi_items_tickets`;
CREATE TABLE `glpi_items_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`tickets_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`,`tickets_id`),
KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_itilcategories
DROP TABLE IF EXISTS `glpi_itilcategories`;
CREATE TABLE `glpi_itilcategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`itilcategories_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`completename` text COLLATE utf8_unicode_ci,
`comment` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`knowbaseitemcategories_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`is_helpdeskvisible` tinyint(1) NOT NULL DEFAULT '1',
`tickettemplates_id_incident` int(11) NOT NULL DEFAULT '0',
`tickettemplates_id_demand` int(11) NOT NULL DEFAULT '0',
`changetemplates_id` int(11) NOT NULL DEFAULT '0',
`problemtemplates_id` int(11) NOT NULL DEFAULT '0',
`is_incident` int(11) NOT NULL DEFAULT '1',
`is_request` int(11) NOT NULL DEFAULT '1',
`is_problem` int(11) NOT NULL DEFAULT '1',
`is_change` tinyint(1) NOT NULL DEFAULT '1',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`),
KEY `users_id` (`users_id`),
KEY `groups_id` (`groups_id`),
KEY `is_helpdeskvisible` (`is_helpdeskvisible`),
KEY `itilcategories_id` (`itilcategories_id`),
KEY `tickettemplates_id_incident` (`tickettemplates_id_incident`),
KEY `tickettemplates_id_demand` (`tickettemplates_id_demand`),
KEY `changetemplates_id` (`changetemplates_id`),
KEY `problemtemplates_id` (`problemtemplates_id`),
KEY `is_incident` (`is_incident`),
KEY `is_request` (`is_request`),
KEY `is_problem` (`is_problem`),
KEY `is_change` (`is_change`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_itils_projects
DROP TABLE IF EXISTS `glpi_itils_projects`;
CREATE TABLE `glpi_itils_projects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`items_id` int(11) NOT NULL DEFAULT '0',
`projects_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`,`projects_id`),
KEY `projects_id` (`projects_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitemcategories
DROP TABLE IF EXISTS `glpi_knowbaseitemcategories`;
CREATE TABLE `glpi_knowbaseitemcategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`knowbaseitemcategories_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`completename` text COLLATE utf8_unicode_ci,
`comment` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`sons_cache` longtext COLLATE utf8_unicode_ci,
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`entities_id`,`knowbaseitemcategories_id`,`name`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitems
DROP TABLE IF EXISTS `glpi_knowbaseitems`;
CREATE TABLE `glpi_knowbaseitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitemcategories_id` int(11) NOT NULL DEFAULT '0',
`name` text COLLATE utf8_unicode_ci,
`answer` longtext COLLATE utf8_unicode_ci,
`is_faq` tinyint(1) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`view` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`begin_date` timestamp NULL DEFAULT NULL,
`end_date` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `users_id` (`users_id`),
KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`),
KEY `is_faq` (`is_faq`),
KEY `date_mod` (`date_mod`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
FULLTEXT KEY `fulltext` (`name`,`answer`),
FULLTEXT KEY `name` (`name`),
FULLTEXT KEY `answer` (`answer`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitems_profiles
DROP TABLE IF EXISTS `glpi_knowbaseitems_profiles`;
CREATE TABLE `glpi_knowbaseitems_profiles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL DEFAULT '0',
`profiles_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `knowbaseitems_id` (`knowbaseitems_id`),
KEY `profiles_id` (`profiles_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitems_users
DROP TABLE IF EXISTS `glpi_knowbaseitems_users`;
CREATE TABLE `glpi_knowbaseitems_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `knowbaseitems_id` (`knowbaseitems_id`),
KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitemtranslations
DROP TABLE IF EXISTS `glpi_knowbaseitemtranslations`;
CREATE TABLE `glpi_knowbaseitemtranslations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL DEFAULT '0',
`language` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` text COLLATE utf8_unicode_ci,
`answer` longtext COLLATE utf8_unicode_ci,
`users_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `item` (`knowbaseitems_id`,`language`),
KEY `users_id` (`users_id`),
FULLTEXT KEY `fulltext` (`name`,`answer`),
FULLTEXT KEY `name` (`name`),
FULLTEXT KEY `answer` (`answer`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_lines
DROP TABLE IF EXISTS `glpi_lines`;
CREATE TABLE `glpi_lines` (
`id` INT(11) NOT NULL auto_increment,
`name` VARCHAR(255) NOT NULL DEFAULT '',
`entities_id` INT(11) NOT NULL DEFAULT 0,
`is_recursive` TINYINT(1) NOT NULL DEFAULT 0,
`is_deleted` TINYINT(1) NOT NULL DEFAULT 0,
`caller_num` VARCHAR(255) NOT NULL DEFAULT '',
`caller_name` VARCHAR(255) NOT NULL DEFAULT '',
`users_id` INT(11) NOT NULL DEFAULT 0,
`groups_id` INT(11) NOT NULL DEFAULT 0,
`lineoperators_id` INT(11) NOT NULL DEFAULT 0,
`locations_id` INT(11) NOT NULL DEFAULT '0',
`states_id` INT(11) NOT NULL DEFAULT '0',
`linetypes_id` INT(11) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`comment` TEXT,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `users_id` (`users_id`),
KEY `lineoperators_id` (`lineoperators_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_lineoperators
DROP TABLE IF EXISTS `glpi_lineoperators`;
CREATE TABLE IF NOT EXISTS `glpi_lineoperators` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`comment` text COLLATE utf8_unicode_ci,
`mcc` int(11) DEFAULT NULL,
`mnc` int(11) DEFAULT NULL,
`entities_id` INT(11) NOT NULL DEFAULT 0,
`is_recursive` TINYINT(1) NOT NULL DEFAULT 0,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
UNIQUE KEY `unicity` (`mcc`,`mnc`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_linetypes`;
CREATE TABLE IF NOT EXISTS `glpi_linetypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_links
DROP TABLE IF EXISTS `glpi_links`;
CREATE TABLE `glpi_links` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '1',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`data` text COLLATE utf8_unicode_ci,
`open_window` tinyint(1) NOT NULL DEFAULT '1',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_links_itemtypes
DROP TABLE IF EXISTS `glpi_links_itemtypes`;
CREATE TABLE `glpi_links_itemtypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`links_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`links_id`),
KEY `links_id` (`links_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_locations
DROP TABLE IF EXISTS `glpi_locations`;
CREATE TABLE `glpi_locations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`comment` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`address` text COLLATE utf8_unicode_ci,
`postcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`town` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`building` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`room` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`latitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`longitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`altitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`entities_id`,`locations_id`,`name`),
KEY `locations_id` (`locations_id`),
KEY `name` (`name`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_logs
DROP TABLE IF EXISTS `glpi_logs`;
CREATE TABLE `glpi_logs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype_link` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`linked_action` int(11) NOT NULL DEFAULT '0' COMMENT 'see define.php HISTORY_* constant',
`user_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`id_search_option` int(11) NOT NULL DEFAULT '0' COMMENT 'see search.constant.php for value',
`old_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`new_value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `itemtype_link` (`itemtype_link`),
KEY `item` (`itemtype`,`items_id`),
KEY `id_search_option` (`id_search_option`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_mailcollectors
DROP TABLE IF EXISTS `glpi_mailcollectors`;
CREATE TABLE `glpi_mailcollectors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`host` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`login` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`filesize_max` int(11) NOT NULL DEFAULT '2097152',
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`passwd` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`accepted` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`refused` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`errors` int(11) NOT NULL DEFAULT '0',
`use_mail_date` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`requester_field` int(11) NOT NULL DEFAULT '0',
`add_cc_to_observer` tinyint(1) NOT NULL DEFAULT '0',
`collect_only_unread` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `is_active` (`is_active`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_manufacturers
DROP TABLE IF EXISTS `glpi_manufacturers`;
CREATE TABLE `glpi_manufacturers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_monitormodels
DROP TABLE IF EXISTS `glpi_monitormodels`;
CREATE TABLE `glpi_monitormodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`required_units` int(11) NOT NULL DEFAULT '1',
`depth` float NOT NULL DEFAULT 1,
`power_connections` int(11) NOT NULL DEFAULT '0',
`power_consumption` int(11) NOT NULL DEFAULT '0',
`is_half_rack` tinyint(1) NOT NULL DEFAULT '0',
`picture_front` text COLLATE utf8_unicode_ci,
`picture_rear` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_monitors
DROP TABLE IF EXISTS `glpi_monitors`;
CREATE TABLE `glpi_monitors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`size` decimal(5,2) NOT NULL DEFAULT '0.00',
`have_micro` tinyint(1) NOT NULL DEFAULT '0',
`have_speaker` tinyint(1) NOT NULL DEFAULT '0',
`have_subd` tinyint(1) NOT NULL DEFAULT '0',
`have_bnc` tinyint(1) NOT NULL DEFAULT '0',
`have_dvi` tinyint(1) NOT NULL DEFAULT '0',
`have_pivot` tinyint(1) NOT NULL DEFAULT '0',
`have_hdmi` tinyint(1) NOT NULL DEFAULT '0',
`have_displayport` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`monitortypes_id` int(11) NOT NULL DEFAULT '0',
`monitormodels_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`is_global` tinyint(1) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`ticket_tco` decimal(20,4) DEFAULT '0.0000',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `is_global` (`is_global`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `monitormodels_id` (`monitormodels_id`),
KEY `states_id` (`states_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `monitortypes_id` (`monitortypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `date_creation` (`date_creation`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_monitortypes
DROP TABLE IF EXISTS `glpi_monitortypes`;
CREATE TABLE `glpi_monitortypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_netpoints
DROP TABLE IF EXISTS `glpi_netpoints`;
CREATE TABLE `glpi_netpoints` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `complete` (`entities_id`,`locations_id`,`name`),
KEY `location_name` (`locations_id`,`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkaliases
DROP TABLE IF EXISTS `glpi_networkaliases`;
CREATE TABLE `glpi_networkaliases` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`networknames_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`fqdns_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `name` (`name`),
KEY `networknames_id` (`networknames_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkequipmentmodels
DROP TABLE IF EXISTS `glpi_networkequipmentmodels`;
CREATE TABLE `glpi_networkequipmentmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`required_units` int(11) NOT NULL DEFAULT '1',
`depth` float NOT NULL DEFAULT 1,
`power_connections` int(11) NOT NULL DEFAULT '0',
`power_consumption` int(11) NOT NULL DEFAULT '0',
`is_half_rack` tinyint(1) NOT NULL DEFAULT '0',
`picture_front` text COLLATE utf8_unicode_ci,
`picture_rear` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkequipments
DROP TABLE IF EXISTS `glpi_networkequipments`;
CREATE TABLE `glpi_networkequipments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ram` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`locations_id` int(11) NOT NULL DEFAULT '0',
`networks_id` int(11) NOT NULL DEFAULT '0',
`networkequipmenttypes_id` int(11) NOT NULL DEFAULT '0',
`networkequipmentmodels_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`ticket_tco` decimal(20,4) DEFAULT '0.0000',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `networkequipmentmodels_id` (`networkequipmentmodels_id`),
KEY `networks_id` (`networks_id`),
KEY `states_id` (`states_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `networkequipmenttypes_id` (`networkequipmenttypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `date_mod` (`date_mod`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkequipmenttypes
DROP TABLE IF EXISTS `glpi_networkequipmenttypes`;
CREATE TABLE `glpi_networkequipmenttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkinterfaces
DROP TABLE IF EXISTS `glpi_networkinterfaces`;
CREATE TABLE `glpi_networkinterfaces` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networknames
DROP TABLE IF EXISTS `glpi_networknames`;
CREATE TABLE `glpi_networknames` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`fqdns_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `FQDN` (`name`,`fqdns_id`),
KEY `name` (`name`),
KEY `fqdns_id` (`fqdns_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `item` (`itemtype`,`items_id`,`is_deleted`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkportaggregates
DROP TABLE IF EXISTS `glpi_networkportaggregates`;
CREATE TABLE `glpi_networkportaggregates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`networkports_id_list` text COLLATE utf8_unicode_ci COMMENT 'array of associated networkports_id',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `networkports_id` (`networkports_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkportaliases
DROP TABLE IF EXISTS `glpi_networkportaliases`;
CREATE TABLE `glpi_networkportaliases` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`networkports_id_alias` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `networkports_id` (`networkports_id`),
KEY `networkports_id_alias` (`networkports_id_alias`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkportdialups
DROP TABLE IF EXISTS `glpi_networkportdialups`;
CREATE TABLE `glpi_networkportdialups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `networkports_id` (`networkports_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkportethernets
DROP TABLE IF EXISTS `glpi_networkportethernets`;
CREATE TABLE `glpi_networkportethernets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`items_devicenetworkcards_id` int(11) NOT NULL DEFAULT '0',
`netpoints_id` int(11) NOT NULL DEFAULT '0',
`type` varchar(10) COLLATE utf8_unicode_ci DEFAULT '' COMMENT 'T, LX, SX',
`speed` int(11) NOT NULL DEFAULT '10' COMMENT 'Mbit/s: 10, 100, 1000, 10000',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `networkports_id` (`networkports_id`),
KEY `card` (`items_devicenetworkcards_id`),
KEY `netpoint` (`netpoints_id`),
KEY `type` (`type`),
KEY `speed` (`speed`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkportfiberchannels
DROP TABLE IF EXISTS `glpi_networkportfiberchannels`;
CREATE TABLE `glpi_networkportfiberchannels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`items_devicenetworkcards_id` int(11) NOT NULL DEFAULT '0',
`netpoints_id` int(11) NOT NULL DEFAULT '0',
`wwn` varchar(16) COLLATE utf8_unicode_ci DEFAULT '',
`speed` int(11) NOT NULL DEFAULT '10' COMMENT 'Mbit/s: 10, 100, 1000, 10000',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `networkports_id` (`networkports_id`),
KEY `card` (`items_devicenetworkcards_id`),
KEY `netpoint` (`netpoints_id`),
KEY `wwn` (`wwn`),
KEY `speed` (`speed`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkportlocals
DROP TABLE IF EXISTS `glpi_networkportlocals`;
CREATE TABLE `glpi_networkportlocals` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `networkports_id` (`networkports_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkports
DROP TABLE IF EXISTS `glpi_networkports`;
CREATE TABLE `glpi_networkports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`logical_number` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`instantiation_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`mac` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `on_device` (`items_id`,`itemtype`),
KEY `item` (`itemtype`,`items_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `mac` (`mac`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkports_networkports
DROP TABLE IF EXISTS `glpi_networkports_networkports`;
CREATE TABLE `glpi_networkports_networkports` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id_1` int(11) NOT NULL DEFAULT '0',
`networkports_id_2` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`networkports_id_1`,`networkports_id_2`),
KEY `networkports_id_2` (`networkports_id_2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkports_vlans
DROP TABLE IF EXISTS `glpi_networkports_vlans`;
CREATE TABLE `glpi_networkports_vlans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`vlans_id` int(11) NOT NULL DEFAULT '0',
`tagged` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`networkports_id`,`vlans_id`),
KEY `vlans_id` (`vlans_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networkportwifis
DROP TABLE IF EXISTS `glpi_networkportwifis`;
CREATE TABLE `glpi_networkportwifis` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`networkports_id` int(11) NOT NULL DEFAULT '0',
`items_devicenetworkcards_id` int(11) NOT NULL DEFAULT '0',
`wifinetworks_id` int(11) NOT NULL DEFAULT '0',
`networkportwifis_id` int(11) NOT NULL DEFAULT '0' COMMENT 'only useful in case of Managed node',
`version` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'a, a/b, a/b/g, a/b/g/n, a/b/g/n/y',
`mode` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'ad-hoc, managed, master, repeater, secondary, monitor, auto',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `networkports_id` (`networkports_id`),
KEY `card` (`items_devicenetworkcards_id`),
KEY `essid` (`wifinetworks_id`),
KEY `version` (`version`),
KEY `mode` (`mode`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_networks
DROP TABLE IF EXISTS `glpi_networks`;
CREATE TABLE `glpi_networks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_notepads
DROP TABLE IF EXISTS `glpi_notepads`;
CREATE TABLE `glpi_notepads` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`users_id_lastupdater` int(11) NOT NULL DEFAULT '0',
`content` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `item` (`itemtype`,`items_id`),
KEY `date_mod` (`date_mod`),
KEY `date` (`date`),
KEY `users_id_lastupdater` (`users_id_lastupdater`),
KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_notifications
DROP TABLE IF EXISTS `glpi_notifications`;
CREATE TABLE `glpi_notifications` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`event` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`comment` text COLLATE utf8_unicode_ci,
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`allow_response` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `itemtype` (`itemtype`),
KEY `entities_id` (`entities_id`),
KEY `is_active` (`is_active`),
KEY `date_mod` (`date_mod`),
KEY `is_recursive` (`is_recursive`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_notifications_notificationtemplates
DROP TABLE IF EXISTS `glpi_notifications_notificationtemplates`;
CREATE TABLE `glpi_notifications_notificationtemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`notifications_id` int(11) NOT NULL DEFAULT '0',
`mode` varchar(20) COLLATE utf8_unicode_ci NOT NULL COMMENT 'See Notification_NotificationTemplate::MODE_* constants',
`notificationtemplates_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`notifications_id`, `mode`, `notificationtemplates_id`),
KEY `notifications_id` (`notifications_id`),
KEY `notificationtemplates_id` (`notificationtemplates_id`),
KEY `mode` (`mode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_notificationtargets
DROP TABLE IF EXISTS `glpi_notificationtargets`;
CREATE TABLE `glpi_notificationtargets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '0',
`notifications_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `items` (`type`,`items_id`),
KEY `notifications_id` (`notifications_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_notificationtemplates
DROP TABLE IF EXISTS `glpi_notificationtemplates`;
CREATE TABLE `glpi_notificationtemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`css` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `itemtype` (`itemtype`),
KEY `date_mod` (`date_mod`),
KEY `name` (`name`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_notificationtemplatetranslations
DROP TABLE IF EXISTS `glpi_notificationtemplatetranslations`;
CREATE TABLE `glpi_notificationtemplatetranslations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`notificationtemplates_id` int(11) NOT NULL DEFAULT '0',
`language` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`content_text` text COLLATE utf8_unicode_ci,
`content_html` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `notificationtemplates_id` (`notificationtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_notimportedemails
DROP TABLE IF EXISTS `glpi_notimportedemails`;
CREATE TABLE `glpi_notimportedemails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`from` varchar(255) NOT NULL,
`to` varchar(255) NOT NULL,
`mailcollectors_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NOT NULL,
`subject` text,
`messageid` varchar(255) NOT NULL,
`reason` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `users_id` (`users_id`),
KEY `mailcollectors_id` (`mailcollectors_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
### Dump table glpi_objectlocks
DROP TABLE IF EXISTS `glpi_objectlocks`;
CREATE TABLE `glpi_objectlocks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL COMMENT 'Type of locked object',
`items_id` int(11) NOT NULL COMMENT 'RELATION to various tables, according to itemtype (ID)',
`users_id` int(11) NOT NULL COMMENT 'id of the locker',
`date_mod` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Timestamp of the lock',
PRIMARY KEY (`id`),
UNIQUE KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_operatingsystemarchitectures
DROP TABLE IF EXISTS `glpi_operatingsystemarchitectures`;
CREATE TABLE `glpi_operatingsystemarchitectures` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_operatingsystems
DROP TABLE IF EXISTS `glpi_operatingsystems`;
CREATE TABLE `glpi_operatingsystems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_operatingsystemservicepacks
DROP TABLE IF EXISTS `glpi_operatingsystemservicepacks`;
CREATE TABLE `glpi_operatingsystemservicepacks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_operatingsystemversions
DROP TABLE IF EXISTS `glpi_operatingsystemversions`;
CREATE TABLE `glpi_operatingsystemversions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_passivedcequipments
DROP TABLE IF EXISTS `glpi_passivedcequipments`;
CREATE TABLE `glpi_passivedcequipments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`passivedcequipmentmodels_id` int(11) DEFAULT NULL,
`passivedcequipmenttypes_id` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to states (id)',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `passivedcequipmentmodels_id` (`passivedcequipmentmodels_id`),
KEY `passivedcequipmenttypes_id` (`passivedcequipmenttypes_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `group_id_tech` (`groups_id_tech`),
KEY `is_template` (`is_template`),
KEY `is_deleted` (`is_deleted`),
KEY `states_id` (`states_id`),
KEY `manufacturers_id` (`manufacturers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_passivedcequipmentmodels
DROP TABLE IF EXISTS `glpi_passivedcequipmentmodels`;
CREATE TABLE `glpi_passivedcequipmentmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`required_units` int(11) NOT NULL DEFAULT '1',
`depth` float NOT NULL DEFAULT 1,
`power_connections` int(11) NOT NULL DEFAULT '0',
`power_consumption` int(11) NOT NULL DEFAULT '0',
`is_half_rack` tinyint(1) NOT NULL DEFAULT '0',
`picture_front` text COLLATE utf8_unicode_ci,
`picture_rear` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_peripheralmodels
### Dump table glpi_passivedcequipmenttypes
DROP TABLE IF EXISTS `glpi_passivedcequipmenttypes`;
CREATE TABLE `glpi_passivedcequipmenttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_peripheralmodels`;
CREATE TABLE `glpi_peripheralmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`required_units` int(11) NOT NULL DEFAULT '1',
`depth` float NOT NULL DEFAULT 1,
`power_connections` int(11) NOT NULL DEFAULT '0',
`power_consumption` int(11) NOT NULL DEFAULT '0',
`is_half_rack` tinyint(1) NOT NULL DEFAULT '0',
`picture_front` text COLLATE utf8_unicode_ci,
`picture_rear` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_peripherals
DROP TABLE IF EXISTS `glpi_peripherals`;
CREATE TABLE `glpi_peripherals` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`peripheraltypes_id` int(11) NOT NULL DEFAULT '0',
`peripheralmodels_id` int(11) NOT NULL DEFAULT '0',
`brand` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`is_global` tinyint(1) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`ticket_tco` decimal(20,4) DEFAULT '0.0000',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `is_global` (`is_global`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `peripheralmodels_id` (`peripheralmodels_id`),
KEY `states_id` (`states_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `peripheraltypes_id` (`peripheraltypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `date_mod` (`date_mod`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `date_creation` (`date_creation`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_peripheraltypes
DROP TABLE IF EXISTS `glpi_peripheraltypes`;
CREATE TABLE `glpi_peripheraltypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_phonemodels
DROP TABLE IF EXISTS `glpi_phonemodels`;
CREATE TABLE `glpi_phonemodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_phonepowersupplies
DROP TABLE IF EXISTS `glpi_phonepowersupplies`;
CREATE TABLE `glpi_phonepowersupplies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_phones
DROP TABLE IF EXISTS `glpi_phones`;
CREATE TABLE `glpi_phones` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`phonetypes_id` int(11) NOT NULL DEFAULT '0',
`phonemodels_id` int(11) NOT NULL DEFAULT '0',
`brand` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phonepowersupplies_id` int(11) NOT NULL DEFAULT '0',
`number_line` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`have_headset` tinyint(1) NOT NULL DEFAULT '0',
`have_hp` tinyint(1) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`is_global` tinyint(1) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`ticket_tco` decimal(20,4) DEFAULT '0.0000',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `is_global` (`is_global`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `phonemodels_id` (`phonemodels_id`),
KEY `phonepowersupplies_id` (`phonepowersupplies_id`),
KEY `states_id` (`states_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `phonetypes_id` (`phonetypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `date_mod` (`date_mod`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `date_creation` (`date_creation`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_phonetypes
DROP TABLE IF EXISTS `glpi_phonetypes`;
CREATE TABLE `glpi_phonetypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_planningrecalls
DROP TABLE IF EXISTS `glpi_planningrecalls`;
CREATE TABLE `glpi_planningrecalls` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`before_time` int(11) NOT NULL DEFAULT '-10',
`when` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`,`users_id`),
KEY `users_id` (`users_id`),
KEY `before_time` (`before_time`),
KEY `when` (`when`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_plugins
DROP TABLE IF EXISTS `glpi_plugins`;
CREATE TABLE `glpi_plugins` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`directory` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`version` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`state` int(11) NOT NULL DEFAULT '0' COMMENT 'see define.php PLUGIN_* constant',
`author` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`homepage` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`license` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`directory`),
KEY `state` (`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_printermodels
DROP TABLE IF EXISTS `glpi_printermodels`;
CREATE TABLE `glpi_printermodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_printers
DROP TABLE IF EXISTS `glpi_printers`;
CREATE TABLE `glpi_printers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`have_serial` tinyint(1) NOT NULL DEFAULT '0',
`have_parallel` tinyint(1) NOT NULL DEFAULT '0',
`have_usb` tinyint(1) NOT NULL DEFAULT '0',
`have_wifi` tinyint(1) NOT NULL DEFAULT '0',
`have_ethernet` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`memory_size` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`networks_id` int(11) NOT NULL DEFAULT '0',
`printertypes_id` int(11) NOT NULL DEFAULT '0',
`printermodels_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`is_global` tinyint(1) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`init_pages_counter` int(11) NOT NULL DEFAULT '0',
`last_pages_counter` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`ticket_tco` decimal(20,4) DEFAULT '0.0000',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `is_global` (`is_global`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `printermodels_id` (`printermodels_id`),
KEY `networks_id` (`networks_id`),
KEY `states_id` (`states_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `printertypes_id` (`printertypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `date_mod` (`date_mod`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `last_pages_counter` (`last_pages_counter`),
KEY `is_dynamic` (`is_dynamic`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_printertypes
DROP TABLE IF EXISTS `glpi_printertypes`;
CREATE TABLE `glpi_printertypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problemcosts
DROP TABLE IF EXISTS `glpi_problemcosts`;
CREATE TABLE `glpi_problemcosts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problems_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`begin_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`actiontime` int(11) NOT NULL DEFAULT '0',
`cost_time` decimal(20,4) NOT NULL DEFAULT '0.0000',
`cost_fixed` decimal(20,4) NOT NULL DEFAULT '0.0000',
`cost_material` decimal(20,4) NOT NULL DEFAULT '0.0000',
`budgets_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `problems_id` (`problems_id`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `entities_id` (`entities_id`),
KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problems
DROP TABLE IF EXISTS `glpi_problems`;
CREATE TABLE `glpi_problems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1',
`content` longtext COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date` timestamp NULL DEFAULT NULL,
`solvedate` timestamp NULL DEFAULT NULL,
`closedate` timestamp NULL DEFAULT NULL,
`time_to_resolve` timestamp NULL DEFAULT NULL,
`users_id_recipient` int(11) NOT NULL DEFAULT '0',
`users_id_lastupdater` int(11) NOT NULL DEFAULT '0',
`urgency` int(11) NOT NULL DEFAULT '1',
`impact` int(11) NOT NULL DEFAULT '1',
`priority` int(11) NOT NULL DEFAULT '1',
`itilcategories_id` int(11) NOT NULL DEFAULT '0',
`impactcontent` longtext COLLATE utf8_unicode_ci,
`causecontent` longtext COLLATE utf8_unicode_ci,
`symptomcontent` longtext COLLATE utf8_unicode_ci,
`actiontime` int(11) NOT NULL DEFAULT '0',
`begin_waiting_date` timestamp NULL DEFAULT NULL,
`waiting_duration` int(11) NOT NULL DEFAULT '0',
`close_delay_stat` int(11) NOT NULL DEFAULT '0',
`solve_delay_stat` int(11) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `is_deleted` (`is_deleted`),
KEY `date` (`date`),
KEY `closedate` (`closedate`),
KEY `status` (`status`),
KEY `priority` (`priority`),
KEY `date_mod` (`date_mod`),
KEY `itilcategories_id` (`itilcategories_id`),
KEY `users_id_recipient` (`users_id_recipient`),
KEY `solvedate` (`solvedate`),
KEY `urgency` (`urgency`),
KEY `impact` (`impact`),
KEY `time_to_resolve` (`time_to_resolve`),
KEY `users_id_lastupdater` (`users_id_lastupdater`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problems_suppliers
DROP TABLE IF EXISTS `glpi_problems_suppliers`;
CREATE TABLE `glpi_problems_suppliers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problems_id` int(11) NOT NULL DEFAULT '0',
`suppliers_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`use_notification` tinyint(1) NOT NULL DEFAULT '0',
`alternative_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`problems_id`,`type`,`suppliers_id`),
KEY `group` (`suppliers_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problems_tickets
DROP TABLE IF EXISTS `glpi_problems_tickets`;
CREATE TABLE `glpi_problems_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problems_id` int(11) NOT NULL DEFAULT '0',
`tickets_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`problems_id`,`tickets_id`),
KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problems_users
DROP TABLE IF EXISTS `glpi_problems_users`;
CREATE TABLE `glpi_problems_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problems_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`use_notification` tinyint(1) NOT NULL DEFAULT '0',
`alternative_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`problems_id`,`type`,`users_id`,`alternative_email`),
KEY `user` (`users_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problemtasks
DROP TABLE IF EXISTS `glpi_problemtasks`;
CREATE TABLE `glpi_problemtasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`problems_id` int(11) NOT NULL DEFAULT '0',
`taskcategories_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`begin` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`users_id_editor` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` INT(11) NOT NULL DEFAULT '0',
`content` longtext COLLATE utf8_unicode_ci,
`actiontime` int(11) NOT NULL DEFAULT '0',
`state` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`tasktemplates_id` int(11) NOT NULL DEFAULT '0',
`timeline_position` tinyint(1) NOT NULL DEFAULT '0',
`is_private` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `uuid` (`uuid`),
KEY `problems_id` (`problems_id`),
KEY `users_id` (`users_id`),
KEY `users_id_editor` (`users_id_editor`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `date` (`date`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `begin` (`begin`),
KEY `end` (`end`),
KEY `state` (`state`),
KEY `taskcategories_id` (`taskcategories_id`),
KEY `tasktemplates_id` (`tasktemplates_id`),
KEY `is_private` (`is_private`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_profilerights
DROP TABLE IF EXISTS `glpi_profilerights`;
CREATE TABLE `glpi_profilerights` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`profiles_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`rights` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`profiles_id`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_profiles
DROP TABLE IF EXISTS `glpi_profiles`;
CREATE TABLE `glpi_profiles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`interface` varchar(255) COLLATE utf8_unicode_ci DEFAULT 'helpdesk',
`is_default` tinyint(1) NOT NULL DEFAULT '0',
`helpdesk_hardware` int(11) NOT NULL DEFAULT '0',
`helpdesk_item_type` text COLLATE utf8_unicode_ci,
`ticket_status` text COLLATE utf8_unicode_ci COMMENT 'json encoded array of from/dest allowed status change',
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`problem_status` text COLLATE utf8_unicode_ci COMMENT 'json encoded array of from/dest allowed status change',
`create_ticket_on_login` tinyint(1) NOT NULL DEFAULT '0',
`tickettemplates_id` int(11) NOT NULL DEFAULT '0',
`changetemplates_id` int(11) NOT NULL DEFAULT '0',
`problemtemplates_id` int(11) NOT NULL DEFAULT '0',
`change_status` text COLLATE utf8_unicode_ci COMMENT 'json encoded array of from/dest allowed status change',
`managed_domainrecordtypes` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `interface` (`interface`),
KEY `is_default` (`is_default`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `tickettemplates_id` (`tickettemplates_id`),
KEY `changetemplates_id` (`changetemplates_id`),
KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_profiles_reminders
DROP TABLE IF EXISTS `glpi_profiles_reminders`;
CREATE TABLE `glpi_profiles_reminders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`reminders_id` int(11) NOT NULL DEFAULT '0',
`profiles_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `reminders_id` (`reminders_id`),
KEY `profiles_id` (`profiles_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_profiles_rssfeeds
DROP TABLE IF EXISTS `glpi_profiles_rssfeeds`;
CREATE TABLE `glpi_profiles_rssfeeds` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rssfeeds_id` int(11) NOT NULL DEFAULT '0',
`profiles_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '-1',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `rssfeeds_id` (`rssfeeds_id`),
KEY `profiles_id` (`profiles_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_profiles_users
DROP TABLE IF EXISTS `glpi_profiles_users`;
CREATE TABLE `glpi_profiles_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`users_id` int(11) NOT NULL DEFAULT '0',
`profiles_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '1',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `profiles_id` (`profiles_id`),
KEY `users_id` (`users_id`),
KEY `is_recursive` (`is_recursive`),
KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projectcosts
DROP TABLE IF EXISTS `glpi_projectcosts`;
CREATE TABLE `glpi_projectcosts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`projects_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`begin_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`cost` decimal(20,4) NOT NULL DEFAULT '0.0000',
`budgets_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `projects_id` (`projects_id`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projects
DROP TABLE IF EXISTS `glpi_projects`;
CREATE TABLE `glpi_projects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`priority` int(11) NOT NULL DEFAULT '1',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`projects_id` int(11) NOT NULL DEFAULT '0',
`projectstates_id` int(11) NOT NULL DEFAULT '0',
`projecttypes_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`plan_start_date` timestamp NULL DEFAULT NULL,
`plan_end_date` timestamp NULL DEFAULT NULL,
`real_start_date` timestamp NULL DEFAULT NULL,
`real_end_date` timestamp NULL DEFAULT NULL,
`percent_done` int(11) NOT NULL DEFAULT '0',
`auto_percent_done` tinyint(1) NOT NULL DEFAULT '0',
`show_on_global_gantt` tinyint(1) NOT NULL DEFAULT '0',
`content` longtext COLLATE utf8_unicode_ci,
`comment` longtext COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`projecttemplates_id` int(11) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `code` (`code`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `projects_id` (`projects_id`),
KEY `projectstates_id` (`projectstates_id`),
KEY `projecttypes_id` (`projecttypes_id`),
KEY `priority` (`priority`),
KEY `date` (`date`),
KEY `date_mod` (`date_mod`),
KEY `users_id` (`users_id`),
KEY `groups_id` (`groups_id`),
KEY `plan_start_date` (`plan_start_date`),
KEY `plan_end_date` (`plan_end_date`),
KEY `real_start_date` (`real_start_date`),
KEY `real_end_date` (`real_end_date`),
KEY `percent_done` (`percent_done`),
KEY `show_on_global_gantt` (`show_on_global_gantt`),
KEY `date_creation` (`date_creation`),
KEY `projecttemplates_id` (`projecttemplates_id`),
KEY `is_template` (`is_template`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projectstates
DROP TABLE IF EXISTS `glpi_projectstates`;
CREATE TABLE `glpi_projectstates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_finished` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_finished` (`is_finished`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projecttasks
DROP TABLE IF EXISTS `glpi_projecttasks`;
CREATE TABLE `glpi_projecttasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8_unicode_ci,
`comment` longtext COLLATE utf8_unicode_ci,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`projects_id` int(11) NOT NULL DEFAULT '0',
`projecttasks_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`plan_start_date` timestamp NULL DEFAULT NULL,
`plan_end_date` timestamp NULL DEFAULT NULL,
`real_start_date` timestamp NULL DEFAULT NULL,
`real_end_date` timestamp NULL DEFAULT NULL,
`planned_duration` int(11) NOT NULL DEFAULT '0',
`effective_duration` int(11) NOT NULL DEFAULT '0',
`projectstates_id` int(11) NOT NULL DEFAULT '0',
`projecttasktypes_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`percent_done` int(11) NOT NULL DEFAULT '0',
`auto_percent_done` tinyint(1) NOT NULL DEFAULT '0',
`is_milestone` tinyint(1) NOT NULL DEFAULT '0',
`projecttasktemplates_id` int(11) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uuid` (`uuid`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `projects_id` (`projects_id`),
KEY `projecttasks_id` (`projecttasks_id`),
KEY `date` (`date`),
KEY `date_mod` (`date_mod`),
KEY `users_id` (`users_id`),
KEY `plan_start_date` (`plan_start_date`),
KEY `plan_end_date` (`plan_end_date`),
KEY `real_start_date` (`real_start_date`),
KEY `real_end_date` (`real_end_date`),
KEY `percent_done` (`percent_done`),
KEY `projectstates_id` (`projectstates_id`),
KEY `projecttasktypes_id` (`projecttasktypes_id`),
KEY `projecttasktemplates_id` (`projecttasktemplates_id`),
KEY `is_template` (`is_template`),
KEY `is_milestone` (`is_milestone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projecttasktemplates
DROP TABLE IF EXISTS `glpi_projecttasktemplates`;
CREATE TABLE `glpi_projecttasktemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` longtext COLLATE utf8_unicode_ci,
`comment` longtext COLLATE utf8_unicode_ci,
`projects_id` int(11) NOT NULL DEFAULT '0',
`projecttasks_id` int(11) NOT NULL DEFAULT '0',
`plan_start_date` timestamp NULL DEFAULT NULL,
`plan_end_date` timestamp NULL DEFAULT NULL,
`real_start_date` timestamp NULL DEFAULT NULL,
`real_end_date` timestamp NULL DEFAULT NULL,
`planned_duration` int(11) NOT NULL DEFAULT '0',
`effective_duration` int(11) NOT NULL DEFAULT '0',
`projectstates_id` int(11) NOT NULL DEFAULT '0',
`projecttasktypes_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`percent_done` int(11) NOT NULL DEFAULT '0',
`is_milestone` tinyint(1) NOT NULL DEFAULT '0',
`comments` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `projects_id` (`projects_id`),
KEY `projecttasks_id` (`projecttasks_id`),
KEY `date_creation` (`date_creation`),
KEY `date_mod` (`date_mod`),
KEY `users_id` (`users_id`),
KEY `plan_start_date` (`plan_start_date`),
KEY `plan_end_date` (`plan_end_date`),
KEY `real_start_date` (`real_start_date`),
KEY `real_end_date` (`real_end_date`),
KEY `percent_done` (`percent_done`),
KEY `projectstates_id` (`projectstates_id`),
KEY `projecttasktypes_id` (`projecttasktypes_id`),
KEY `is_milestone` (`is_milestone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projecttasks_tickets
DROP TABLE IF EXISTS `glpi_projecttasks_tickets`;
CREATE TABLE `glpi_projecttasks_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`projecttasks_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`tickets_id`,`projecttasks_id`),
KEY `projects_id` (`projecttasks_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projecttaskteams
DROP TABLE IF EXISTS `glpi_projecttaskteams`;
CREATE TABLE `glpi_projecttaskteams` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`projecttasks_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`projecttasks_id`,`itemtype`,`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projecttasktypes
DROP TABLE IF EXISTS `glpi_projecttasktypes`;
CREATE TABLE `glpi_projecttasktypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projectteams
DROP TABLE IF EXISTS `glpi_projectteams`;
CREATE TABLE `glpi_projectteams` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`projects_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`projects_id`,`itemtype`,`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_projecttypes
DROP TABLE IF EXISTS `glpi_projecttypes`;
CREATE TABLE `glpi_projecttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_queuednotifications
DROP TABLE IF EXISTS `glpi_queuednotifications`;
CREATE TABLE `glpi_queuednotifications` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`notificationtemplates_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`sent_try` int(11) NOT NULL DEFAULT '0',
`create_time` timestamp NULL DEFAULT NULL,
`send_time` timestamp NULL DEFAULT NULL,
`sent_time` timestamp NULL DEFAULT NULL,
`name` text COLLATE utf8_unicode_ci,
`sender` text COLLATE utf8_unicode_ci,
`sendername` text COLLATE utf8_unicode_ci,
`recipient` text COLLATE utf8_unicode_ci,
`recipientname` text COLLATE utf8_unicode_ci,
`replyto` text COLLATE utf8_unicode_ci,
`replytoname` text COLLATE utf8_unicode_ci,
`headers` text COLLATE utf8_unicode_ci,
`body_html` longtext COLLATE utf8_unicode_ci,
`body_text` longtext COLLATE utf8_unicode_ci,
`messageid` text COLLATE utf8_unicode_ci,
`documents` text COLLATE utf8_unicode_ci,
`mode` varchar(20) COLLATE utf8_unicode_ci NOT NULL COMMENT 'See Notification_NotificationTemplate::MODE_* constants',
PRIMARY KEY (`id`),
KEY `item` (`itemtype`,`items_id`,`notificationtemplates_id`),
KEY `is_deleted` (`is_deleted`),
KEY `entities_id` (`entities_id`),
KEY `sent_try` (`sent_try`),
KEY `create_time` (`create_time`),
KEY `send_time` (`send_time`),
KEY `sent_time` (`sent_time`),
KEY `mode` (`mode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_registeredids
DROP TABLE IF EXISTS `glpi_registeredids`;
CREATE TABLE `glpi_registeredids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`device_type` varchar(100) COLLATE utf8_unicode_ci NOT NULL COMMENT 'USB, PCI ...',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `item` (`items_id`,`itemtype`),
KEY `device_type` (`device_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_reminders
DROP TABLE IF EXISTS `glpi_reminders`;
CREATE TABLE `glpi_reminders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`text` text COLLATE utf8_unicode_ci,
`begin` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT NULL,
`is_planned` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`state` int(11) NOT NULL DEFAULT '0',
`begin_view_date` timestamp NULL DEFAULT NULL,
`end_view_date` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uuid` (`uuid`),
KEY `date` (`date`),
KEY `begin` (`begin`),
KEY `end` (`end`),
KEY `users_id` (`users_id`),
KEY `is_planned` (`is_planned`),
KEY `state` (`state`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_remindertranslations
DROP TABLE IF EXISTS `glpi_remindertranslations`;
CREATE TABLE `glpi_remindertranslations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`reminders_id` int(11) NOT NULL DEFAULT '0',
`language` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` text COLLATE utf8_unicode_ci,
`text` longtext COLLATE utf8_unicode_ci,
`users_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `item` (`reminders_id`,`language`),
KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_reminders_users
DROP TABLE IF EXISTS `glpi_reminders_users`;
CREATE TABLE `glpi_reminders_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`reminders_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `reminders_id` (`reminders_id`),
KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_requesttypes
DROP TABLE IF EXISTS `glpi_requesttypes`;
CREATE TABLE `glpi_requesttypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_helpdesk_default` tinyint(1) NOT NULL DEFAULT '0',
`is_followup_default` tinyint(1) NOT NULL DEFAULT '0',
`is_mail_default` tinyint(1) NOT NULL DEFAULT '0',
`is_mailfollowup_default` tinyint(1) NOT NULL DEFAULT '0',
`is_active` TINYINT(1) NOT NULL DEFAULT '1',
`is_ticketheader` TINYINT(1) NOT NULL DEFAULT '1',
`is_itilfollowup` TINYINT(1) NOT NULL DEFAULT '1',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_helpdesk_default` (`is_helpdesk_default`),
KEY `is_followup_default` (`is_followup_default`),
KEY `is_mail_default` (`is_mail_default`),
KEY `is_mailfollowup_default` (`is_mailfollowup_default`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `is_active` (`is_active`),
KEY `is_ticketheader` (`is_ticketheader`),
KEY `is_itilfollowup` (`is_itilfollowup`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_reservationitems
DROP TABLE IF EXISTS `glpi_reservationitems`;
CREATE TABLE `glpi_reservationitems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `is_active` (`is_active`),
KEY `item` (`itemtype`,`items_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_reservations
DROP TABLE IF EXISTS `glpi_reservations`;
CREATE TABLE `glpi_reservations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`reservationitems_id` int(11) NOT NULL DEFAULT '0',
`begin` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`group` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `begin` (`begin`),
KEY `end` (`end`),
KEY `reservationitems_id` (`reservationitems_id`),
KEY `users_id` (`users_id`),
KEY `resagroup` (`reservationitems_id`,`group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_rssfeeds
DROP TABLE IF EXISTS `glpi_rssfeeds`;
CREATE TABLE `glpi_rssfeeds` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`url` text COLLATE utf8_unicode_ci,
`refresh_rate` int(11) NOT NULL DEFAULT '86400',
`max_items` int(11) NOT NULL DEFAULT '20',
`have_error` tinyint(1) NOT NULL DEFAULT '0',
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `users_id` (`users_id`),
KEY `date_mod` (`date_mod`),
KEY `have_error` (`have_error`),
KEY `is_active` (`is_active`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_rssfeeds_users
DROP TABLE IF EXISTS `glpi_rssfeeds_users`;
CREATE TABLE `glpi_rssfeeds_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rssfeeds_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `rssfeeds_id` (`rssfeeds_id`),
KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ruleactions
DROP TABLE IF EXISTS `glpi_ruleactions`;
CREATE TABLE `glpi_ruleactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rules_id` int(11) NOT NULL DEFAULT '0',
`action_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'VALUE IN (assign, regex_result, append_regex_result, affectbyip, affectbyfqdn, affectbymac)',
`field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rules_id` (`rules_id`),
KEY `field_value` (`field`(50),`value`(50))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_rulecriterias
DROP TABLE IF EXISTS `glpi_rulecriterias`;
CREATE TABLE `glpi_rulecriterias` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rules_id` int(11) NOT NULL DEFAULT '0',
`criteria` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`condition` int(11) NOT NULL DEFAULT '0' COMMENT 'see define.php PATTERN_* and REGEX_* constant',
`pattern` TEXT COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `rules_id` (`rules_id`),
KEY `condition` (`condition`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_rulerightparameters
DROP TABLE IF EXISTS `glpi_rulerightparameters`;
CREATE TABLE `glpi_rulerightparameters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_rules
DROP TABLE IF EXISTS `glpi_rules`;
CREATE TABLE `glpi_rules` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`sub_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`ranking` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8_unicode_ci,
`match` char(10) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'see define.php *_MATCHING constant',
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`condition` int(11) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_active` (`is_active`),
KEY `sub_type` (`sub_type`),
KEY `date_mod` (`date_mod`),
KEY `is_recursive` (`is_recursive`),
KEY `condition` (`condition`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_slalevelactions
DROP TABLE IF EXISTS `glpi_slalevelactions`;
CREATE TABLE `glpi_slalevelactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`slalevels_id` int(11) NOT NULL DEFAULT '0',
`action_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `slalevels_id` (`slalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_slalevelcriterias
DROP TABLE IF EXISTS `glpi_slalevelcriterias`;
CREATE TABLE `glpi_slalevelcriterias` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`slalevels_id` int(11) NOT NULL DEFAULT '0',
`criteria` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`condition` int(11) NOT NULL DEFAULT '0' COMMENT 'see define.php PATTERN_* and REGEX_* constant',
`pattern` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `slalevels_id` (`slalevels_id`),
KEY `condition` (`condition`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_slalevels
DROP TABLE IF EXISTS `glpi_slalevels`;
CREATE TABLE `glpi_slalevels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`slas_id` int(11) NOT NULL DEFAULT '0',
`execution_time` int(11) NOT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`match` char(10) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'see define.php *_MATCHING constant',
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_active` (`is_active`),
KEY `slas_id` (`slas_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_slalevels_tickets
DROP TABLE IF EXISTS `glpi_slalevels_tickets`;
CREATE TABLE `glpi_slalevels_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`slalevels_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tickets_id` (`tickets_id`),
KEY `slalevels_id` (`slalevels_id`),
UNIQUE KEY `unicity` (`tickets_id`,`slalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_olalevelactions
DROP TABLE IF EXISTS `glpi_olalevelactions`;
CREATE TABLE `glpi_olalevelactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`olalevels_id` int(11) NOT NULL DEFAULT '0',
`action_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `olalevels_id` (`olalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_olalevelcriterias
DROP TABLE IF EXISTS `glpi_olalevelcriterias`;
CREATE TABLE `glpi_olalevelcriterias` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`olalevels_id` int(11) NOT NULL DEFAULT '0',
`criteria` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`condition` int(11) NOT NULL DEFAULT '0' COMMENT 'see define.php PATTERN_* and REGEX_* constant',
`pattern` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `olalevels_id` (`olalevels_id`),
KEY `condition` (`condition`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_olalevels
DROP TABLE IF EXISTS `glpi_olalevels`;
CREATE TABLE `glpi_olalevels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`olas_id` int(11) NOT NULL DEFAULT '0',
`execution_time` int(11) NOT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`match` char(10) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'see define.php *_MATCHING constant',
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_active` (`is_active`),
KEY `olas_id` (`olas_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_olalevels_tickets
DROP TABLE IF EXISTS `glpi_olalevels_tickets`;
CREATE TABLE `glpi_olalevels_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`olalevels_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tickets_id` (`tickets_id`),
KEY `olalevels_id` (`olalevels_id`),
UNIQUE KEY `unicity` (`tickets_id`,`olalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_slms
DROP TABLE IF EXISTS `glpi_slms`;
CREATE TABLE `glpi_slms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`calendars_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `calendars_id` (`calendars_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_slas
DROP TABLE IF EXISTS `glpi_slas`;
CREATE TABLE `glpi_slas` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`number_time` int(11) NOT NULL,
`calendars_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`definition_time` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`end_of_working_day` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`slms_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `calendars_id` (`calendars_id`),
KEY `slms_id` (`slms_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_olas
DROP TABLE IF EXISTS `glpi_olas`;
CREATE TABLE `glpi_olas` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`number_time` int(11) NOT NULL,
`calendars_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`definition_time` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`end_of_working_day` tinyint(1) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`slms_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `calendars_id` (`calendars_id`),
KEY `slms_id` (`slms_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_softwarecategories
DROP TABLE IF EXISTS `glpi_softwarecategories`;
CREATE TABLE `glpi_softwarecategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`softwarecategories_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `softwarecategories_id` (`softwarecategories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_softwarelicenses
DROP TABLE IF EXISTS `glpi_softwarelicenses`;
CREATE TABLE `glpi_softwarelicenses` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`softwares_id` int(11) NOT NULL DEFAULT '0',
`softwarelicenses_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`number` int(11) NOT NULL DEFAULT '0',
`softwarelicensetypes_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`softwareversions_id_buy` int(11) NOT NULL DEFAULT '0',
`softwareversions_id_use` int(11) NOT NULL DEFAULT '0',
`expire` date DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`is_valid` tinyint(1) NOT NULL DEFAULT '1',
`date_creation` timestamp NULL DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`is_helpdesk_visible` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`states_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`contact` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`contact_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`allow_overquota` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `expire` (`expire`),
KEY `softwareversions_id_buy` (`softwareversions_id_buy`),
KEY `entities_id` (`entities_id`),
KEY `softwarelicensetypes_id` (`softwarelicensetypes_id`),
KEY `softwareversions_id_use` (`softwareversions_id_use`),
KEY `date_mod` (`date_mod`),
KEY `softwares_id_expire_number` (`softwares_id`,`expire`, `number`),
KEY `locations_id` (`locations_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `users_id` (`users_id`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `groups_id` (`groups_id`),
KEY `is_helpdesk_visible` (`is_helpdesk_visible`),
KEY `is_deleted` (`is_deleted`),
KEY `date_creation` (`date_creation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `states_id` (`states_id`),
KEY `allow_overquota` (`allow_overquota`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_softwarelicensetypes
DROP TABLE IF EXISTS `glpi_softwarelicensetypes`;
CREATE TABLE `glpi_softwarelicensetypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`softwarelicensetypes_id` int(11) NOT NULL DEFAULT '0',
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `softwarelicensetypes_id` (`softwarelicensetypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_softwares
DROP TABLE IF EXISTS `glpi_softwares`;
CREATE TABLE `glpi_softwares` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`locations_id` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_update` tinyint(1) NOT NULL DEFAULT '0',
`softwares_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`ticket_tco` decimal(20,4) DEFAULT '0.0000',
`is_helpdesk_visible` tinyint(1) NOT NULL DEFAULT '1',
`softwarecategories_id` int(11) NOT NULL DEFAULT '0',
`is_valid` tinyint(1) NOT NULL DEFAULT '1',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `is_update` (`is_update`),
KEY `softwarecategories_id` (`softwarecategories_id`),
KEY `entities_id` (`entities_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `groups_id` (`groups_id`),
KEY `users_id` (`users_id`),
KEY `locations_id` (`locations_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `softwares_id` (`softwares_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_helpdesk_visible` (`is_helpdesk_visible`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_softwareversions
DROP TABLE IF EXISTS `glpi_softwareversions`;
CREATE TABLE `glpi_softwareversions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`softwares_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`operatingsystems_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `softwares_id` (`softwares_id`),
KEY `states_id` (`states_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `operatingsystems_id` (`operatingsystems_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_solutiontemplates
DROP TABLE IF EXISTS `glpi_solutiontemplates`;
CREATE TABLE `glpi_solutiontemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8_unicode_ci,
`solutiontypes_id` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_recursive` (`is_recursive`),
KEY `solutiontypes_id` (`solutiontypes_id`),
KEY `entities_id` (`entities_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_solutiontypes
DROP TABLE IF EXISTS `glpi_solutiontypes`;
CREATE TABLE `glpi_solutiontypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '1',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_itilsolutions
DROP TABLE IF EXISTS `glpi_itilsolutions`;
CREATE TABLE `glpi_itilsolutions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`solutiontypes_id` int(11) NOT NULL DEFAULT '0',
`solutiontype_name` varchar(255) NULL DEFAULT NULL,
`content` longtext COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_approval` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`user_name` varchar(255) NULL DEFAULT NULL,
`users_id_editor` int(11) NOT NULL DEFAULT '0',
`users_id_approval` int(11) NOT NULL DEFAULT '0',
`user_name_approval` varchar(255) NULL DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '1',
`itilfollowups_id` int(11) DEFAULT NULL COMMENT 'Followup reference on reject or approve a solution',
PRIMARY KEY (`id`),
KEY `itemtype` (`itemtype`),
KEY `item_id` (`items_id`),
KEY `item` (`itemtype`,`items_id`),
KEY `solutiontypes_id` (`solutiontypes_id`),
KEY `users_id` (`users_id`),
KEY `users_id_editor` (`users_id_editor`),
KEY `users_id_approval` (`users_id_approval`),
KEY `status` (`status`),
KEY `itilfollowups_id` (`itilfollowups_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ssovariables
DROP TABLE IF EXISTS `glpi_ssovariables`;
CREATE TABLE `glpi_ssovariables` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_states
DROP TABLE IF EXISTS `glpi_states`;
CREATE TABLE `glpi_states` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`states_id` int(11) NOT NULL DEFAULT '0',
`completename` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`is_visible_computer` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_monitor` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_networkequipment` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_peripheral` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_phone` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_printer` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_softwareversion` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_softwarelicense` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_line` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_certificate` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_rack` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_passivedcequipment` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_enclosure` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_pdu` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_cluster` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_contract` tinyint(1) NOT NULL DEFAULT '1',
`is_visible_appliance` tinyint(1) NOT NULL DEFAULT '1',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
UNIQUE KEY `unicity` (`states_id`,`name`),
KEY `is_visible_computer` (`is_visible_computer`),
KEY `is_visible_monitor` (`is_visible_monitor`),
KEY `is_visible_networkequipment` (`is_visible_networkequipment`),
KEY `is_visible_peripheral` (`is_visible_peripheral`),
KEY `is_visible_phone` (`is_visible_phone`),
KEY `is_visible_printer` (`is_visible_printer`),
KEY `is_visible_softwareversion` (`is_visible_softwareversion`),
KEY `is_visible_softwarelicense` (`is_visible_softwarelicense`),
KEY `is_visible_line` (`is_visible_line`),
KEY `is_visible_certificate` (`is_visible_certificate`),
KEY `is_visible_rack` (`is_visible_rack`),
KEY `is_visible_passivedcequipment` (`is_visible_passivedcequipment`),
KEY `is_visible_enclosure` (`is_visible_enclosure`),
KEY `is_visible_pdu` (`is_visible_pdu`),
KEY `is_visible_cluster` (`is_visible_cluster`),
KEY `is_visible_contract` (`is_visible_contract`),
KEY `is_visible_appliance` (`is_visible_appliance`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_suppliers
DROP TABLE IF EXISTS `glpi_suppliers`;
CREATE TABLE `glpi_suppliers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`suppliertypes_id` int(11) NOT NULL DEFAULT '0',
`address` text COLLATE utf8_unicode_ci,
`postcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`town` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`state` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phonenumber` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`fax` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `suppliertypes_id` (`suppliertypes_id`),
KEY `is_deleted` (`is_deleted`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `is_active` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_suppliers_tickets
DROP TABLE IF EXISTS `glpi_suppliers_tickets`;
CREATE TABLE `glpi_suppliers_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`suppliers_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`use_notification` tinyint(1) NOT NULL DEFAULT '1',
`alternative_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`tickets_id`,`type`,`suppliers_id`),
KEY `group` (`suppliers_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_suppliertypes
DROP TABLE IF EXISTS `glpi_suppliertypes`;
CREATE TABLE `glpi_suppliertypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_taskcategories
DROP TABLE IF EXISTS `glpi_taskcategories`;
CREATE TABLE `glpi_taskcategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`taskcategories_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`completename` text COLLATE utf8_unicode_ci,
`comment` text COLLATE utf8_unicode_ci,
`level` int(11) NOT NULL DEFAULT '0',
`ancestors_cache` longtext COLLATE utf8_unicode_ci,
`sons_cache` longtext COLLATE utf8_unicode_ci,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`is_helpdeskvisible` tinyint(1) NOT NULL DEFAULT '1',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`knowbaseitemcategories_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `taskcategories_id` (`taskcategories_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `is_active` (`is_active`),
KEY `is_helpdeskvisible` (`is_helpdeskvisible`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tasktemplates
DROP TABLE IF EXISTS `glpi_tasktemplates`;
CREATE TABLE `glpi_tasktemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8_unicode_ci,
`taskcategories_id` int(11) NOT NULL DEFAULT '0',
`actiontime` int(11) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`state` int(11) NOT NULL DEFAULT '0',
`is_private` tinyint(1) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` INT(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_recursive` (`is_recursive`),
KEY `taskcategories_id` (`taskcategories_id`),
KEY `entities_id` (`entities_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `is_private` (`is_private`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id_tech` (`groups_id_tech`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ticketcosts
DROP TABLE IF EXISTS `glpi_ticketcosts`;
CREATE TABLE `glpi_ticketcosts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`begin_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`actiontime` int(11) NOT NULL DEFAULT '0',
`cost_time` decimal(20,4) NOT NULL DEFAULT '0.0000',
`cost_fixed` decimal(20,4) NOT NULL DEFAULT '0.0000',
`cost_material` decimal(20,4) NOT NULL DEFAULT '0.0000',
`budgets_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `tickets_id` (`tickets_id`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `entities_id` (`entities_id`),
KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ticketrecurrents
DROP TABLE IF EXISTS `glpi_ticketrecurrents`;
CREATE TABLE `glpi_ticketrecurrents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`is_active` tinyint(1) NOT NULL DEFAULT '0',
`tickettemplates_id` int(11) NOT NULL DEFAULT '0',
`begin_date` timestamp NULL DEFAULT NULL,
`periodicity` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`create_before` int(11) NOT NULL DEFAULT '0',
`next_creation_date` timestamp NULL DEFAULT NULL,
`calendars_id` int(11) 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 `tickettemplates_id` (`tickettemplates_id`),
KEY `next_creation_date` (`next_creation_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickets
DROP TABLE IF EXISTS `glpi_tickets`;
CREATE TABLE `glpi_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date` timestamp NULL DEFAULT NULL,
`closedate` timestamp NULL DEFAULT NULL,
`solvedate` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`users_id_lastupdater` int(11) NOT NULL DEFAULT '0',
`status` int(11) NOT NULL DEFAULT '1',
`users_id_recipient` int(11) NOT NULL DEFAULT '0',
`requesttypes_id` int(11) NOT NULL DEFAULT '0',
`content` longtext COLLATE utf8_unicode_ci,
`urgency` int(11) NOT NULL DEFAULT '1',
`impact` int(11) NOT NULL DEFAULT '1',
`priority` int(11) NOT NULL DEFAULT '1',
`itilcategories_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`global_validation` int(11) NOT NULL DEFAULT '1',
`slas_id_ttr` int(11) NOT NULL DEFAULT '0',
`slas_id_tto` int(11) NOT NULL DEFAULT '0',
`slalevels_id_ttr` int(11) NOT NULL DEFAULT '0',
`time_to_resolve` timestamp NULL DEFAULT NULL,
`time_to_own` timestamp NULL DEFAULT NULL,
`begin_waiting_date` timestamp NULL DEFAULT NULL,
`sla_waiting_duration` int(11) NOT NULL DEFAULT '0',
`ola_waiting_duration` int(11) NOT NULL DEFAULT '0',
`olas_id_tto` int(11) NOT NULL DEFAULT '0',
`olas_id_ttr` int(11) NOT NULL DEFAULT '0',
`olalevels_id_ttr` int(11) NOT NULL DEFAULT '0',
`ola_ttr_begin_date` timestamp NULL DEFAULT NULL,
`internal_time_to_resolve` timestamp NULL DEFAULT NULL,
`internal_time_to_own` timestamp NULL DEFAULT NULL,
`waiting_duration` int(11) NOT NULL DEFAULT '0',
`close_delay_stat` int(11) NOT NULL DEFAULT '0',
`solve_delay_stat` int(11) NOT NULL DEFAULT '0',
`takeintoaccount_delay_stat` int(11) NOT NULL DEFAULT '0',
`actiontime` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`validation_percent` int(11) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date` (`date`),
KEY `closedate` (`closedate`),
KEY `status` (`status`),
KEY `priority` (`priority`),
KEY `request_type` (`requesttypes_id`),
KEY `date_mod` (`date_mod`),
KEY `entities_id` (`entities_id`),
KEY `users_id_recipient` (`users_id_recipient`),
KEY `solvedate` (`solvedate`),
KEY `urgency` (`urgency`),
KEY `impact` (`impact`),
KEY `global_validation` (`global_validation`),
KEY `slas_id_tto` (`slas_id_tto`),
KEY `slas_id_ttr` (`slas_id_ttr`),
KEY `time_to_resolve` (`time_to_resolve`),
KEY `time_to_own` (`time_to_own`),
KEY `olas_id_tto` (`olas_id_tto`),
KEY `olas_id_ttr` (`olas_id_ttr`),
KEY `slalevels_id_ttr` (`slalevels_id_ttr`),
KEY `internal_time_to_resolve` (`internal_time_to_resolve`),
KEY `internal_time_to_own` (`internal_time_to_own`),
KEY `users_id_lastupdater` (`users_id_lastupdater`),
KEY `type` (`type`),
KEY `itilcategories_id` (`itilcategories_id`),
KEY `is_deleted` (`is_deleted`),
KEY `name` (`name`),
KEY `locations_id` (`locations_id`),
KEY `date_creation` (`date_creation`),
KEY `ola_waiting_duration` (`ola_waiting_duration`),
KEY `olalevels_id_ttr` (`olalevels_id_ttr`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickets_tickets
DROP TABLE IF EXISTS `glpi_tickets_tickets`;
CREATE TABLE `glpi_tickets_tickets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id_1` int(11) NOT NULL DEFAULT '0',
`tickets_id_2` int(11) NOT NULL DEFAULT '0',
`link` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`tickets_id_1`,`tickets_id_2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickets_users
DROP TABLE IF EXISTS `glpi_tickets_users`;
CREATE TABLE `glpi_tickets_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`use_notification` tinyint(1) NOT NULL DEFAULT '1',
`alternative_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`tickets_id`,`type`,`users_id`,`alternative_email`),
KEY `user` (`users_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ticketsatisfactions
DROP TABLE IF EXISTS `glpi_ticketsatisfactions`;
CREATE TABLE `glpi_ticketsatisfactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`type` int(11) NOT NULL DEFAULT '1',
`date_begin` timestamp NULL DEFAULT NULL,
`date_answered` timestamp NULL DEFAULT NULL,
`satisfaction` int(11) DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickettasks
DROP TABLE IF EXISTS `glpi_tickettasks`;
CREATE TABLE `glpi_tickettasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tickets_id` int(11) NOT NULL DEFAULT '0',
`taskcategories_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`users_id_editor` int(11) NOT NULL DEFAULT '0',
`content` longtext COLLATE utf8_unicode_ci,
`is_private` tinyint(1) NOT NULL DEFAULT '0',
`actiontime` int(11) NOT NULL DEFAULT '0',
`begin` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT NULL,
`state` int(11) NOT NULL DEFAULT '1',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` INT(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`tasktemplates_id` int(11) NOT NULL DEFAULT '0',
`timeline_position` tinyint(1) NOT NULL DEFAULT '0',
`sourceitems_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `uuid` (`uuid`),
KEY `date` (`date`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `users_id` (`users_id`),
KEY `users_id_editor` (`users_id_editor`),
KEY `tickets_id` (`tickets_id`),
KEY `is_private` (`is_private`),
KEY `taskcategories_id` (`taskcategories_id`),
KEY `state` (`state`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `begin` (`begin`),
KEY `end` (`end`),
KEY `tasktemplates_id` (`tasktemplates_id`),
KEY `sourceitems_id` (`sourceitems_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickettemplatehiddenfields
DROP TABLE IF EXISTS `glpi_tickettemplatehiddenfields`;
CREATE TABLE `glpi_tickettemplatehiddenfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickettemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`tickettemplates_id`,`num`),
KEY `tickettemplates_id` (`tickettemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changeemplatehiddenfields
DROP TABLE IF EXISTS `glpi_changetemplatehiddenfields`;
CREATE TABLE `glpi_changetemplatehiddenfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changetemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changetemplates_id`,`num`),
KEY `changetemplates_id` (`changetemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problemtemplatehiddenfields
DROP TABLE IF EXISTS `glpi_problemtemplatehiddenfields`;
CREATE TABLE `glpi_problemtemplatehiddenfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problemtemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`problemtemplates_id`,`num`),
KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickettemplatemandatoryfields
DROP TABLE IF EXISTS `glpi_tickettemplatemandatoryfields`;
CREATE TABLE `glpi_tickettemplatemandatoryfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickettemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`tickettemplates_id`,`num`),
KEY `tickettemplates_id` (`tickettemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changetemplatemandatoryfields
DROP TABLE IF EXISTS `glpi_changetemplatemandatoryfields`;
CREATE TABLE `glpi_changetemplatemandatoryfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changetemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`changetemplates_id`,`num`),
KEY `changetemplates_id` (`changetemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problemtemplatemandatoryfields
DROP TABLE IF EXISTS `glpi_problemtemplatemandatoryfields`;
CREATE TABLE `glpi_problemtemplatemandatoryfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problemtemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`problemtemplates_id`,`num`),
KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickettemplatepredefinedfields
DROP TABLE IF EXISTS `glpi_tickettemplatepredefinedfields`;
CREATE TABLE `glpi_tickettemplatepredefinedfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tickettemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
`value` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `tickettemplates_id` (`tickettemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changetemplatepredefinedfields
DROP TABLE IF EXISTS `glpi_changetemplatepredefinedfields`;
CREATE TABLE `glpi_changetemplatepredefinedfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`changetemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
`value` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `changetemplates_id` (`changetemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problemtemplatepredefinedfields
DROP TABLE IF EXISTS `glpi_problemtemplatepredefinedfields`;
CREATE TABLE `glpi_problemtemplatepredefinedfields` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`problemtemplates_id` int(11) NOT NULL DEFAULT '0',
`num` int(11) NOT NULL DEFAULT '0',
`value` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_tickettemplates
DROP TABLE IF EXISTS `glpi_tickettemplates`;
CREATE TABLE `glpi_tickettemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_changetemplates
DROP TABLE IF EXISTS `glpi_changetemplates`;
CREATE TABLE `glpi_changetemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_problemtemplates
DROP TABLE IF EXISTS `glpi_problemtemplates`;
CREATE TABLE `glpi_problemtemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_ticketvalidations
DROP TABLE IF EXISTS `glpi_ticketvalidations`;
CREATE TABLE `glpi_ticketvalidations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`tickets_id` int(11) NOT NULL DEFAULT '0',
`users_id_validate` int(11) NOT NULL DEFAULT '0',
`comment_submission` text COLLATE utf8_unicode_ci,
`comment_validation` text COLLATE utf8_unicode_ci,
`status` int(11) NOT NULL DEFAULT '2',
`submission_date` timestamp NULL DEFAULT NULL,
`validation_date` timestamp NULL DEFAULT NULL,
`timeline_position` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `users_id` (`users_id`),
KEY `users_id_validate` (`users_id_validate`),
KEY `tickets_id` (`tickets_id`),
KEY `submission_date` (`submission_date`),
KEY `validation_date` (`validation_date`),
KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_transfers
DROP TABLE IF EXISTS `glpi_transfers`;
CREATE TABLE `glpi_transfers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`keep_ticket` int(11) NOT NULL DEFAULT '0',
`keep_networklink` int(11) NOT NULL DEFAULT '0',
`keep_reservation` int(11) NOT NULL DEFAULT '0',
`keep_history` int(11) NOT NULL DEFAULT '0',
`keep_device` int(11) NOT NULL DEFAULT '0',
`keep_infocom` int(11) NOT NULL DEFAULT '0',
`keep_dc_monitor` int(11) NOT NULL DEFAULT '0',
`clean_dc_monitor` int(11) NOT NULL DEFAULT '0',
`keep_dc_phone` int(11) NOT NULL DEFAULT '0',
`clean_dc_phone` int(11) NOT NULL DEFAULT '0',
`keep_dc_peripheral` int(11) NOT NULL DEFAULT '0',
`clean_dc_peripheral` int(11) NOT NULL DEFAULT '0',
`keep_dc_printer` int(11) NOT NULL DEFAULT '0',
`clean_dc_printer` int(11) NOT NULL DEFAULT '0',
`keep_supplier` int(11) NOT NULL DEFAULT '0',
`clean_supplier` int(11) NOT NULL DEFAULT '0',
`keep_contact` int(11) NOT NULL DEFAULT '0',
`clean_contact` int(11) NOT NULL DEFAULT '0',
`keep_contract` int(11) NOT NULL DEFAULT '0',
`clean_contract` int(11) NOT NULL DEFAULT '0',
`keep_software` int(11) NOT NULL DEFAULT '0',
`clean_software` int(11) NOT NULL DEFAULT '0',
`keep_document` int(11) NOT NULL DEFAULT '0',
`clean_document` int(11) NOT NULL DEFAULT '0',
`keep_cartridgeitem` int(11) NOT NULL DEFAULT '0',
`clean_cartridgeitem` int(11) NOT NULL DEFAULT '0',
`keep_cartridge` int(11) NOT NULL DEFAULT '0',
`keep_consumable` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`keep_disk` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_usercategories
DROP TABLE IF EXISTS `glpi_usercategories`;
CREATE TABLE `glpi_usercategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_useremails
DROP TABLE IF EXISTS `glpi_useremails`;
CREATE TABLE `glpi_useremails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`users_id` int(11) NOT NULL DEFAULT '0',
`is_default` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`users_id`,`email`),
KEY `email` (`email`),
KEY `is_default` (`is_default`),
KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_users
DROP TABLE IF EXISTS `glpi_users`;
CREATE TABLE `glpi_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`password_last_update` timestamp NULL DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`mobile` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`realname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`firstname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`language` char(10) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'see define.php CFG_GLPI[language] array',
`use_mode` int(11) NOT NULL DEFAULT '0',
`list_limit` int(11) DEFAULT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`comment` text COLLATE utf8_unicode_ci,
`auths_id` int(11) NOT NULL DEFAULT '0',
`authtype` int(11) NOT NULL DEFAULT '0',
`last_login` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_sync` timestamp NULL DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`profiles_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`usertitles_id` int(11) NOT NULL DEFAULT '0',
`usercategories_id` int(11) NOT NULL DEFAULT '0',
`date_format` int(11) DEFAULT NULL,
`number_format` int(11) DEFAULT NULL,
`names_format` int(11) DEFAULT NULL,
`csv_delimiter` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_ids_visible` tinyint(1) DEFAULT NULL,
`use_flat_dropdowntree` tinyint(1) DEFAULT NULL,
`show_jobs_at_login` tinyint(1) DEFAULT NULL,
`priority_1` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`priority_2` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`priority_3` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`priority_4` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`priority_5` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`priority_6` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`followup_private` tinyint(1) DEFAULT NULL,
`task_private` tinyint(1) DEFAULT NULL,
`default_requesttypes_id` int(11) DEFAULT NULL,
`password_forget_token` char(40) COLLATE utf8_unicode_ci DEFAULT NULL,
`password_forget_token_date` timestamp NULL DEFAULT NULL,
`user_dn` text COLLATE utf8_unicode_ci,
`registration_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`show_count_on_tabs` tinyint(1) DEFAULT NULL,
`refresh_views` int(11) DEFAULT NULL,
`set_default_tech` tinyint(1) DEFAULT NULL,
`personal_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`personal_token_date` timestamp NULL DEFAULT NULL,
`api_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`api_token_date` timestamp NULL DEFAULT NULL,
`cookie_token` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`cookie_token_date` timestamp NULL DEFAULT NULL,
`display_count_on_home` int(11) DEFAULT NULL,
`notification_to_myself` tinyint(1) DEFAULT NULL,
`duedateok_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`duedatewarning_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`duedatecritical_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`duedatewarning_less` int(11) DEFAULT NULL,
`duedatecritical_less` int(11) DEFAULT NULL,
`duedatewarning_unit` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`duedatecritical_unit` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`display_options` text COLLATE utf8_unicode_ci,
`is_deleted_ldap` tinyint(1) NOT NULL DEFAULT '0',
`pdffont` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`picture` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`begin_date` timestamp NULL DEFAULT NULL,
`end_date` timestamp NULL DEFAULT NULL,
`keep_devices_when_purging_item` tinyint(1) DEFAULT NULL,
`privatebookmarkorder` longtext COLLATE utf8_unicode_ci,
`backcreated` tinyint(1) DEFAULT NULL,
`task_state` int(11) DEFAULT NULL,
`layout` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`palette` char(20) COLLATE utf8_unicode_ci DEFAULT NULL,
`set_default_requester` tinyint(1) DEFAULT NULL,
`lock_autolock_mode` tinyint(1) DEFAULT NULL,
`lock_directunlock_notification` tinyint(1) DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`highcontrast_css` tinyint(1) DEFAULT 0,
`plannings` text COLLATE utf8_unicode_ci DEFAULT NULL,
`sync_field` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`groups_id` int(11) NOT NULL DEFAULT '0',
`users_id_supervisor` int(11) NOT NULL DEFAULT '0',
`timezone` varchar(50) DEFAULT NULL,
`default_dashboard_central` varchar(100) DEFAULT NULL,
`default_dashboard_assets` varchar(100) DEFAULT NULL,
`default_dashboard_helpdesk` varchar(100) DEFAULT NULL,
`default_dashboard_mini_ticket` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicityloginauth` (`name`, `authtype`, `auths_id`),
KEY `firstname` (`firstname`),
KEY `realname` (`realname`),
KEY `entities_id` (`entities_id`),
KEY `profiles_id` (`profiles_id`),
KEY `locations_id` (`locations_id`),
KEY `usertitles_id` (`usertitles_id`),
KEY `usercategories_id` (`usercategories_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_active` (`is_active`),
KEY `date_mod` (`date_mod`),
KEY `authitem` (`authtype`,`auths_id`),
KEY `is_deleted_ldap` (`is_deleted_ldap`),
KEY `date_creation` (`date_creation`),
KEY `begin_date` (`begin_date`),
KEY `end_date` (`end_date`),
KEY `sync_field` (`sync_field`),
KEY `groups_id` (`groups_id`),
KEY `users_id_supervisor` (`users_id_supervisor`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_usertitles
DROP TABLE IF EXISTS `glpi_usertitles`;
CREATE TABLE `glpi_usertitles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_virtualmachinestates
DROP TABLE IF EXISTS `glpi_virtualmachinestates`;
CREATE TABLE `glpi_virtualmachinestates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_virtualmachinesystems
DROP TABLE IF EXISTS `glpi_virtualmachinesystems`;
CREATE TABLE `glpi_virtualmachinesystems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_virtualmachinetypes
DROP TABLE IF EXISTS `glpi_virtualmachinetypes`;
CREATE TABLE `glpi_virtualmachinetypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_vlans
DROP TABLE IF EXISTS `glpi_vlans`;
CREATE TABLE `glpi_vlans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`tag` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `tag` (`tag`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_wifinetworks
DROP TABLE IF EXISTS `glpi_wifinetworks`;
CREATE TABLE `glpi_wifinetworks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`essid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`mode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'ad-hoc, access_point',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `essid` (`essid`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitems_items
DROP TABLE IF EXISTS `glpi_knowbaseitems_items`;
CREATE TABLE `glpi_knowbaseitems_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`,`knowbaseitems_id`),
KEY `itemtype` (`itemtype`),
KEY `item_id` (`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitems_revisions
DROP TABLE IF EXISTS `glpi_knowbaseitems_revisions`;
CREATE TABLE `glpi_knowbaseitems_revisions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL,
`revision` int(11) NOT NULL,
`name` text COLLATE utf8_unicode_ci,
`answer` longtext COLLATE utf8_unicode_ci,
`language` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`knowbaseitems_id`, `revision`, `language`),
KEY `revision` (`revision`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_knowbaseitems_comments
DROP TABLE IF EXISTS `glpi_knowbaseitems_comments`;
CREATE TABLE `glpi_knowbaseitems_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`knowbaseitems_id` int(11) NOT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`language` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`parent_comment_id` int(11) DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicebatterymodels
DROP TABLE IF EXISTS `glpi_devicebatterymodels`;
CREATE TABLE `glpi_devicebatterymodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicebatteries
DROP TABLE IF EXISTS `glpi_devicebatteries`;
CREATE TABLE `glpi_devicebatteries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`voltage` int(11) DEFAULT NULL,
`capacity` int(11) DEFAULT NULL,
`devicebatterytypes_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicebatterymodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicebatterymodels_id` (`devicebatterymodels_id`),
KEY `devicebatterytypes_id` (`devicebatterytypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicebatteries
DROP TABLE IF EXISTS `glpi_items_devicebatteries`;
CREATE TABLE `glpi_items_devicebatteries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicebatteries_id` int(11) NOT NULL DEFAULT '0',
`manufacturing_date` date DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicebatteries_id` (`devicebatteries_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_devicebatterytypes`;
CREATE TABLE `glpi_devicebatterytypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicefirmwaremodels
DROP TABLE IF EXISTS `glpi_devicefirmwaremodels`;
CREATE TABLE `glpi_devicefirmwaremodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_devicefirmwares
DROP TABLE IF EXISTS `glpi_devicefirmwares`;
CREATE TABLE `glpi_devicefirmwares` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`designation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`date` date DEFAULT NULL,
`version` varchar(255) DEFAULT NULL,
`devicefirmwaretypes_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`devicefirmwaremodels_id` int(11) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `designation` (`designation`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `devicefirmwaremodels_id` (`devicefirmwaremodels_id`),
KEY `devicefirmwaretypes_id` (`devicefirmwaretypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_devicefirmwares
DROP TABLE IF EXISTS `glpi_items_devicefirmwares`;
CREATE TABLE `glpi_items_devicefirmwares` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`devicefirmwares_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`is_dynamic` tinyint(1) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`locations_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `computers_id` (`items_id`),
KEY `devicefirmwares_id` (`devicefirmwares_id`),
KEY `is_deleted` (`is_deleted`),
KEY `is_dynamic` (`is_dynamic`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `serial` (`serial`),
KEY `item` (`itemtype`,`items_id`),
KEY `otherserial` (`otherserial`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_devicefirmwaretypes`;
CREATE TABLE `glpi_devicefirmwaretypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Datacenters
DROP TABLE IF EXISTS `glpi_datacenters`;
CREATE TABLE `glpi_datacenters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_dcrooms`;
CREATE TABLE `glpi_dcrooms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`vis_cols` int(11) DEFAULT NULL,
`vis_rows` int(11) DEFAULT NULL,
`blueprint` text COLLATE utf8_unicode_ci,
`datacenters_id` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `datacenters_id` (`datacenters_id`),
KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_rackmodels`;
CREATE TABLE `glpi_rackmodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_racktypes`;
CREATE TABLE `glpi_racktypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `name` (`name`),
KEY `date_creation` (`date_creation`),
KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_racks`;
CREATE TABLE `glpi_racks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`rackmodels_id` int(11) DEFAULT NULL,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`racktypes_id` int(11) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`width` int(11) DEFAULT NULL,
`height` int(11) DEFAULT NULL,
`depth` int(11) DEFAULT NULL,
`number_units` int(11) DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`dcrooms_id` int(11) NOT NULL DEFAULT '0',
`room_orientation` int(11) NOT NULL DEFAULT '0',
`position` varchar(50),
`bgcolor` varchar(7) DEFAULT NULL,
`max_power` int(11) NOT NULL DEFAULT '0',
`mesured_power` int(11) NOT NULL DEFAULT '0',
`max_weight` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `rackmodels_id` (`rackmodels_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `racktypes_id` (`racktypes_id`),
KEY `states_id` (`states_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `group_id_tech` (`groups_id_tech`),
KEY `is_template` (`is_template`),
KEY `is_deleted` (`is_deleted`),
KEY `dcrooms_id` (`dcrooms_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_items_racks`;
CREATE TABLE `glpi_items_racks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`racks_id` int(11) NOT NULL,
`itemtype` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL,
`position` int(11) NOT NULL,
`orientation` tinyint(1),
`bgcolor` varchar(7) DEFAULT NULL,
`hpos` tinyint(1) NOT NULL DEFAULT '0',
`is_reserved` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `item` (`itemtype`,`items_id`, `is_reserved`),
KEY `relation` (`racks_id`,`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_enclosuremodels`;
CREATE TABLE `glpi_enclosuremodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`required_units` int(11) NOT NULL DEFAULT '1',
`depth` float NOT NULL DEFAULT 1,
`power_connections` int(11) NOT NULL DEFAULT '0',
`power_consumption` int(11) NOT NULL DEFAULT '0',
`is_half_rack` tinyint(1) NOT NULL DEFAULT '0',
`picture_front` text COLLATE utf8_unicode_ci,
`picture_rear` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_enclosures`;
CREATE TABLE `glpi_enclosures` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`enclosuremodels_id` int(11) DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`orientation` tinyint(1),
`power_supplies` tinyint(1) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to states (id)',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `enclosuremodels_id` (`enclosuremodels_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `group_id_tech` (`groups_id_tech`),
KEY `is_template` (`is_template`),
KEY `is_deleted` (`is_deleted`),
KEY `states_id` (`states_id`),
KEY `manufacturers_id` (`manufacturers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_items_enclosures`;
CREATE TABLE `glpi_items_enclosures` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`enclosures_id` int(11) NOT NULL,
`itemtype` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL,
`position` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `item` (`itemtype`,`items_id`),
KEY `relation` (`enclosures_id`,`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_pdumodels`;
CREATE TABLE `glpi_pdumodels` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`product_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`required_units` int(11) NOT NULL DEFAULT '1',
`depth` float NOT NULL DEFAULT 1,
`power_connections` int(11) NOT NULL DEFAULT '0',
`max_power` int(11) NOT NULL DEFAULT '0',
`is_half_rack` tinyint(1) NOT NULL DEFAULT '0',
`picture_front` text COLLATE utf8_unicode_ci,
`picture_rear` text COLLATE utf8_unicode_ci,
`is_rackable` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_rackable` (`is_rackable`),
KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_pdutypes`;
CREATE TABLE `glpi_pdutypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `name` (`name`),
KEY `date_creation` (`date_creation`),
KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_pdus`;
CREATE TABLE `glpi_pdus` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`serial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`otherserial` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`pdumodels_id` int(11) DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_template` tinyint(1) NOT NULL DEFAULT '0',
`template_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to states (id)',
`comment` text COLLATE utf8_unicode_ci,
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`pdutypes_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `locations_id` (`locations_id`),
KEY `pdumodels_id` (`pdumodels_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `group_id_tech` (`groups_id_tech`),
KEY `is_template` (`is_template`),
KEY `is_deleted` (`is_deleted`),
KEY `states_id` (`states_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `pdutypes_id` (`pdutypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_plugs`;
CREATE TABLE `glpi_plugs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_pdus_plugs`;
CREATE TABLE `glpi_pdus_plugs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`plugs_id` int(11) NOT NULL DEFAULT '0',
`pdus_id` int(11) NOT NULL DEFAULT '0',
`number_plugs` int(11) DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `plugs_id` (`plugs_id`),
KEY `pdus_id` (`pdus_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_pdus_racks`;
CREATE TABLE `glpi_pdus_racks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`racks_id` int(11) NOT NULL DEFAULT '0',
`pdus_id` int(11) NOT NULL DEFAULT '0',
`side` int(11) DEFAULT '0',
`position` int(11) NOT NULL,
`bgcolor` varchar(7) DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `racks_id` (`racks_id`),
KEY `pdus_id` (`pdus_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- /Datacenters
DROP TABLE IF EXISTS `glpi_itilfollowuptemplates`;
CREATE TABLE `glpi_itilfollowuptemplates` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`date_creation` TIMESTAMP NULL DEFAULT NULL,
`date_mod` TIMESTAMP NULL DEFAULT NULL,
`entities_id` INT(11) NOT NULL DEFAULT '0',
`is_recursive` TINYINT(1) NOT NULL DEFAULT '0',
`name` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8_unicode_ci',
`content` TEXT NULL COLLATE 'utf8_unicode_ci',
`requesttypes_id` INT(11) NOT NULL DEFAULT '0',
`is_private` TINYINT(1) NOT NULL DEFAULT '0',
`comment` TEXT NULL COLLATE 'utf8_unicode_ci',
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `is_recursive` (`is_recursive`),
KEY `requesttypes_id` (`requesttypes_id`),
KEY `entities_id` (`entities_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `is_private` (`is_private`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_itilfollowups`;
CREATE TABLE `glpi_itilfollowups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`date` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`users_id_editor` int(11) NOT NULL DEFAULT '0',
`content` longtext COLLATE utf8_unicode_ci,
`is_private` tinyint(1) NOT NULL DEFAULT '0',
`requesttypes_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
`timeline_position` tinyint(1) NOT NULL DEFAULT '0',
`sourceitems_id` int(11) NOT NULL DEFAULT '0',
`sourceof_items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `itemtype` (`itemtype`),
KEY `item_id` (`items_id`),
KEY `item` (`itemtype`,`items_id`),
KEY `date` (`date`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`),
KEY `users_id` (`users_id`),
KEY `users_id_editor` (`users_id_editor`),
KEY `is_private` (`is_private`),
KEY `requesttypes_id` (`requesttypes_id`),
KEY `sourceitems_id` (`sourceitems_id`),
KEY `sourceof_items_id` (`sourceof_items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_clustertypes`;
CREATE TABLE `glpi_clustertypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_creation` timestamp NULL DEFAULT NULL,
`date_mod` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date_creation` (`date_creation`),
KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_clusters`;
CREATE TABLE `glpi_clusters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`version` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`states_id` int(11) NOT NULL DEFAULT '0' COMMENT 'RELATION to states (id)',
`comment` text COLLATE utf8_unicode_ci,
`clustertypes_id` int(11) NOT NULL DEFAULT '0',
`autoupdatesystems_id` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `group_id_tech` (`groups_id_tech`),
KEY `is_deleted` (`is_deleted`),
KEY `states_id` (`states_id`),
KEY `clustertypes_id` (`clustertypes_id`),
KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_items_clusters`;
CREATE TABLE `glpi_items_clusters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`clusters_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`clusters_id`,`itemtype`,`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_planningexternalevents
DROP TABLE IF EXISTS `glpi_planningexternalevents`;
CREATE TABLE `glpi_planningexternalevents` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`planningexternaleventtemplates_id` int(11) NOT NULL DEFAULT '0',
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` TINYINT(1) NOT NULL DEFAULT '1',
`date` timestamp NULL DEFAULT NULL,
`users_id` int(11) NOT NULL DEFAULT '0',
`users_id_guests` text COLLATE utf8_unicode_ci,
`groups_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`text` text COLLATE utf8_unicode_ci,
`begin` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT NULL,
`rrule` text COLLATE utf8_unicode_ci,
`state` int(11) NOT NULL DEFAULT '0',
`planningeventcategories_id` int(11) NOT NULL DEFAULT '0',
`background` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uuid` (`uuid`),
KEY `planningexternaleventtemplates_id` (`planningexternaleventtemplates_id`),
KEY `entities_id` (`entities_id`),
KEY `is_recursive` (`is_recursive`),
KEY `date` (`date`),
KEY `begin` (`begin`),
KEY `end` (`end`),
KEY `users_id` (`users_id`),
KEY `groups_id` (`groups_id`),
KEY `state` (`state`),
KEY `planningeventcategories_id` (`planningeventcategories_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_planningexternaleventtemplates
DROP TABLE IF EXISTS `glpi_planningexternaleventtemplates`;
CREATE TABLE `glpi_planningexternaleventtemplates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entities_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`text` text COLLATE utf8_unicode_ci,
`comment` text COLLATE utf8_unicode_ci,
`duration` int(11) NOT NULL DEFAULT '0',
`before_time` int(11) NOT NULL DEFAULT '0',
`rrule` text COLLATE utf8_unicode_ci,
`state` int(11) NOT NULL DEFAULT '0',
`planningeventcategories_id` int(11) NOT NULL DEFAULT '0',
`background` tinyint(1) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `entities_id` (`entities_id`),
KEY `state` (`state`),
KEY `planningeventcategories_id` (`planningeventcategories_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_planningeventcategories
DROP TABLE IF EXISTS `glpi_planningeventcategories`;
CREATE TABLE `glpi_planningeventcategories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_items_kanbans
DROP TABLE IF EXISTS `glpi_items_kanbans`;
CREATE TABLE `glpi_items_kanbans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) DEFAULT NULL,
`users_id` int(11) NOT NULL,
`state` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`,`items_id`,`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
### Dump table glpi_vobjects
DROP TABLE IF EXISTS `glpi_vobjects`;
CREATE TABLE `glpi_vobjects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`itemtype` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
`data` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`itemtype`, `items_id`),
KEY `item` (`itemtype`,`items_id`),
KEY `date_mod` (`date_mod`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_domaintypes`;
CREATE TABLE `glpi_domaintypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_domainrelations`;
CREATE TABLE `glpi_domainrelations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_domains_items`;
CREATE TABLE `glpi_domains_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`domains_id` int(11) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`domainrelations_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`domains_id`, `itemtype`, `items_id`),
KEY `domains_id` (`domains_id`),
KEY `domainrelations_id` (`domainrelations_id`),
KEY `FK_device` (`items_id`, `itemtype`),
KEY `item` (`itemtype`, `items_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_domainrecordtypes`;
CREATE TABLE `glpi_domainrecordtypes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8 COLLATE = utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_domainrecords`;
CREATE TABLE `glpi_domainrecords` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`data` text COLLATE utf8_unicode_ci DEFAULT NULL,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`domains_id` int(11) NOT NULL DEFAULT '0',
`domainrecordtypes_id` int(11) NOT NULL DEFAULT '0',
`ttl` int(11) NOT NULL,
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`comment` text COLLATE utf8_unicode_ci,
`date_mod` timestamp NULL DEFAULT NULL,
`date_creation` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
KEY `domains_id` (`domains_id`),
KEY `domainrecordtypes_id` (`domainrecordtypes_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `date_mod` (`date_mod`),
KEY `is_deleted` (`is_deleted`),
KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
DROP TABLE IF EXISTS `glpi_appliances`;
CREATE TABLE `glpi_appliances` (
`id` int(11) NOT NULL auto_increment,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`is_deleted` tinyint(1) NOT NULL DEFAULT '0',
`appliancetypes_id` int(11) NOT NULL DEFAULT '0',
`comment` text,
`locations_id` int(11) NOT NULL DEFAULT '0',
`manufacturers_id` int(11) NOT NULL DEFAULT '0',
`applianceenvironments_id` int(11) NOT NULL DEFAULT '0',
`users_id` int(11) NOT NULL DEFAULT '0',
`users_id_tech` int(11) NOT NULL DEFAULT '0',
`groups_id` int(11) NOT NULL DEFAULT '0',
`groups_id_tech` int(11) NOT NULL DEFAULT '0',
`date_mod` timestamp NULL DEFAULT NULL,
`states_id` int(11) NOT NULL DEFAULT '0',
`externalidentifier` varchar(255) DEFAULT NULL,
`serial` varchar(255) DEFAULT NULL,
`otherserial` varchar(255) DEFAULT NULL,
`is_helpdesk_visible` tinyint(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `unicity` (`externalidentifier`),
KEY `entities_id` (`entities_id`),
KEY `name` (`name`),
KEY `is_deleted` (`is_deleted`),
KEY `appliancetypes_id` (`appliancetypes_id`),
KEY `locations_id` (`locations_id`),
KEY `manufacturers_id` (`manufacturers_id`),
KEY `applianceenvironments_id` (`applianceenvironments_id`),
KEY `users_id` (`users_id`),
KEY `users_id_tech` (`users_id_tech`),
KEY `groups_id` (`groups_id`),
KEY `groups_id_tech` (`groups_id_tech`),
KEY `states_id` (`states_id`),
KEY `serial` (`serial`),
KEY `otherserial` (`otherserial`),
KEY `is_helpdesk_visible` (`is_helpdesk_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE IF NOT EXISTS `glpi_appliances_items` (
`id` int(11) NOT NULL auto_increment,
`appliances_id` int(11) NOT NULL DEFAULT '0',
`items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` VARCHAR(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE `unicity` (`appliances_id`,`items_id`,`itemtype`),
KEY `appliances_id` (`appliances_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE IF NOT EXISTS `glpi_appliancetypes` (
`id` int(11) NOT NULL auto_increment,
`entities_id` int(11) NOT NULL DEFAULT '0',
`is_recursive` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`comment` text,
`externalidentifier` varchar(255) NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
KEY `entities_id` (`entities_id`),
UNIQUE (`externalidentifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE IF NOT EXISTS `glpi_applianceenvironments` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) DEFAULT NULL,
`comment` text,
PRIMARY KEY (`id`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE IF NOT EXISTS `glpi_appliances_items_relations` (
`id` int(11) NOT NULL auto_increment,
`appliances_items_id` int(11) NOT NULL DEFAULT '0',
`itemtype` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`items_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `appliances_items_id` (`appliances_items_id`),
KEY `itemtype` (`itemtype`),
KEY `items_id` (`items_id`),
KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists