1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
| | 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` datetime 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',
`os_license_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`os_licenseid` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`autoupdatesystems_id` int(11) NOT NULL DEFAULT '0',
`locations_id` int(11) NOT NULL DEFAULT '0',
`domains_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',
`notepad` longtext COLLATE utf8_unicode_ci,
`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,
PRIMARY KEY (`id`),
KEY `date_mod` (`date_mod`),
KEY `name` (`name`),
KEY `is_template` (`is_template`),
KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
KEY `domains_id` (`domains_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 `operatingsystems_id` (`operatingsystems_id`),
KEY `operatingsystemservicepacks_id` (`operatingsystemservicepacks_id`),
KEY `operatingsystemversions_id` (`operatingsystemversions_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`)
) ENGINE=MyISAM AUTO_INCREMENT=3242 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci | |