source: admin/Database/ogAdmBD.sql @ 72d19da

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacion
Last change on this file since 72d19da was 60ea634, checked in by Ramón M. Gómez <ramongomez@…>, 6 years ago

#875: Remove unused field from repositories table and update list of closed tickets.

  • Property mode set to 100644
File size: 41.4 KB
RevLine 
[1a2fa9d8]1-- Fichero de instalación de la base de datos.
[3ec149c]2
[dee9fac]3SET sql_mode = "NO_AUTO_VALUE_ON_ZERO";
4SET GLOBAL sql_mode = TRIM(BOTH ',' FROM REPLACE(@@sql_mode, 'ONLY_FULL_GROUP_BY', ''));
[d4f6719]5SET GLOBAL event_scheduler = ON;
[3ec149c]6
7--
8-- Base de datos: `ogAdmBD`
9--
10
11-- --------------------------------------------------------
12
13--
14-- Estructura de tabla para la tabla `acciones`
15--
16
[a190d69]17DROP TABLE IF EXISTS `acciones`;
18CREATE TABLE `acciones` (
[3ec149c]19  `idaccion` int(11) NOT NULL AUTO_INCREMENT,
[2ff2099]20  `tipoaccion` smallint(6) NOT NULL DEFAULT '0',
21  `idtipoaccion` int(11) NOT NULL DEFAULT '0',
22  `descriaccion` varchar(250) NOT NULL DEFAULT '',
23  `idordenador` int(11) NOT NULL DEFAULT '0',
24  `ip` varchar(50) NOT NULL DEFAULT '',
25  `sesion` int(11) NOT NULL DEFAULT '0',
26  `idcomando` int(11) NOT NULL DEFAULT '0',
[3ec149c]27  `parametros` text,
[31ad046]28  `fechahorareg` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
29  `fechahorafin` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
[3ec149c]30  `estado` tinyint(1) NOT NULL DEFAULT '0',
31  `resultado` tinyint(1) NOT NULL DEFAULT '0',
32  `descrinotificacion` varchar(256) DEFAULT NULL,
33  `ambito` smallint(6) NOT NULL DEFAULT '0',
34  `idambito` int(11) NOT NULL DEFAULT '0',
[d09e1c3]35  `restrambito` text,
[3ec149c]36  `idprocedimiento` int(11) NOT NULL DEFAULT '0',
37  `idtarea` int(11) NOT NULL DEFAULT '0',
38  `idcentro` int(11) NOT NULL DEFAULT '0',
39  `idprogramacion` int(11) NOT NULL DEFAULT '0',
[1bc7f09]40  PRIMARY KEY (`idaccion`),
41  KEY (`idordenador`),
42  KEY (`idprocedimiento`),
43  KEY (`idtarea`),
44  KEY (`idprogramacion`)
[3ec149c]45) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
46
47-- --------------------------------------------------------
48
49--
[049ec55c]50-- Estructura de tabla para la tabla `acciones_log`
51--
52
[a190d69]53DROP TABLE IF EXISTS `acciones_log`;
54CREATE TABLE acciones_log LIKE acciones;
[049ec55c]55ALTER TABLE acciones_log ADD fecha_borrado DATETIME;
56DELIMITER //
57-- Trigger para guardar acciones antes de ser borradas.
58CREATE TRIGGER registrar_acciones BEFORE DELETE ON acciones FOR EACH ROW BEGIN
59        INSERT INTO acciones_log VALUES
60                (OLD.idaccion, OLD.tipoaccion, OLD.idtipoaccion, OLD.descriaccion,
61                OLD.idordenador, OLD.ip, OLD.sesion, OLD.idcomando, OLD.parametros,
62                OLD.fechahorareg, OLD.fechahorafin, OLD.estado, OLD.resultado,
63                OLD.descrinotificacion, OLD.ambito, OLD.idambito, OLD.restrambito,
64                OLD.idprocedimiento, OLD.idtarea, OLD.idcentro, OLD.idprogramacion, NOW());
65END//
66DELIMITER ;
67
68-- --------------------------------------------------------
69
70--
[3ec149c]71-- Estructura de tabla para la tabla `acciones_menus`
72--
73
[a190d69]74DROP TABLE IF EXISTS `acciones_menus`;
75CREATE TABLE `acciones_menus` (
[3ec149c]76  `idaccionmenu` int(11) NOT NULL AUTO_INCREMENT,
77  `tipoaccion` tinyint(4) NOT NULL DEFAULT '0',
78  `idtipoaccion` int(11) NOT NULL DEFAULT '0',
79  `idmenu` int(11) NOT NULL DEFAULT '0',
80  `tipoitem` tinyint(4) DEFAULT NULL,
81  `idurlimg` int(11) DEFAULT NULL,
82  `descripitem` varchar(250) DEFAULT NULL,
83  `orden` tinyint(4) DEFAULT NULL,
84  PRIMARY KEY (`idaccionmenu`)
85) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
86
87-- --------------------------------------------------------
88
89--
90-- Estructura de tabla para la tabla `administradores_centros`
91--
92
[a190d69]93DROP TABLE IF EXISTS `administradores_centros`;
94CREATE TABLE `administradores_centros` (
[3ec149c]95  `idadministradorcentro` int(11) NOT NULL AUTO_INCREMENT,
96  `idusuario` int(11) NOT NULL DEFAULT '0',
97  `idcentro` int(11) NOT NULL DEFAULT '0',
98  PRIMARY KEY (`idadministradorcentro`)
99) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
100
[7a9f3be]101INSERT INTO `administradores_centros` (`idadministradorcentro`, `idusuario`, `idcentro`) VALUES
102(1, 1, 1);
103
[3ec149c]104-- --------------------------------------------------------
105
106--
107-- Estructura de tabla para la tabla `aulas`
108--
109
[a190d69]110DROP TABLE IF EXISTS `aulas`;
111CREATE TABLE `aulas` (
[3ec149c]112  `idaula` int(11) NOT NULL AUTO_INCREMENT,
113  `nombreaula` varchar(100) NOT NULL DEFAULT '',
114  `idcentro` int(11) NOT NULL DEFAULT '0',
115  `urlfoto` varchar(250) DEFAULT NULL,
116  `cagnon` tinyint(1) DEFAULT NULL,
117  `pizarra` tinyint(1) DEFAULT NULL,
118  `grupoid` int(11) DEFAULT NULL,
119  `ubicacion` varchar(255) DEFAULT NULL,
120  `comentarios` text,
[6079bff]121  `puestos` smallint DEFAULT NULL,
[aaf6857]122  `idordprofesor` int(11) DEFAULT 0,
[3ec149c]123  `horaresevini` tinyint(4) DEFAULT NULL,
124  `horaresevfin` tinyint(4) DEFAULT NULL,
[2ff2099]125  `modomul` tinyint(4) NOT NULL DEFAULT '0',
126  `ipmul` varchar(16) NOT NULL DEFAULT '',
127  `pormul` int(11) NOT NULL DEFAULT '0',
[b1fd551]128  `velmul` smallint(6) NOT NULL DEFAULT '70',
[5242394]129  `router` varchar( 30 ),
130  `netmask` varchar( 30 ),
131  `dns` varchar (30),
[8fa6b37]132  `proxy` varchar (30),
[750388b]133  `ntp` varchar (30),
[b1fd551]134  `modp2p` enum('seeder','peer','leecher') DEFAULT 'peer',
[5242394]135  `timep2p` int(11) NOT NULL DEFAULT '60',
136  `validacion` tinyint(1) DEFAULT '0',
137  `paginalogin` varchar(100),
138  `paginavalidacion` varchar(100),
[2ff2099]139  `inremotepc` tinyint DEFAULT '0',
[90c670e]140  `oglivedir` varchar(50) NOT NULL DEFAULT 'ogLive',
[3ec149c]141  PRIMARY KEY (`idaula`)
142) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
143
[cbe1fdf]144
[b9a6500]145--
146-- Estructura de tabla para la tabla `asistentes`
147--
148
[a190d69]149DROP TABLE IF EXISTS `asistentes`;
150CREATE TABLE `asistentes` (
[b9a6500]151  `idcomando` int(11) NOT NULL AUTO_INCREMENT,
152  `descripcion` varchar(250) NOT NULL DEFAULT '',
[2ff2099]153  `pagina` varchar(256) NOT NULL DEFAULT '',
154  `gestor` varchar(256) NOT NULL DEFAULT '',
155  `funcion` varchar(64) NOT NULL DEFAULT '',
[b9a6500]156  `urlimg` varchar(250) DEFAULT NULL,
157  `aplicambito` tinyint(4) DEFAULT NULL,
158  `visuparametros` varchar(250) DEFAULT NULL,
159  `parametros` varchar(250) DEFAULT NULL,
160  `comentarios` text,
[2ff2099]161  `activo` tinyint(1) NOT NULL DEFAULT '0',
[f9bd401]162  PRIMARY KEY ( `idcomando` , `descripcion` )
[b9a6500]163) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
164
165
166INSERT INTO `asistentes` (`idcomando`, `descripcion`, `pagina`, `gestor`, `funcion`, `urlimg`, `aplicambito`, `visuparametros`, `parametros`, `comentarios`, `activo`) VALUES
[f9bd401]167('8', 'Asistente Clonacion Particiones Remotas', '../asistentes/AsistenteCloneRemotePartition.php', '../asistentes/gestores/gestor_Comandos.php', 'EjecutarScript', ' ', '31', 'iph;tis;dcr;dsp', 'nfn;iph;tis;dcr;scp', ' ', '1'),
[294f9e5]168('8', 'Asistente Deploy de Imagenes', '../asistentes/AsistenteDeployImage.php', '../asistentes/gestores/gestor_Comandos.php', 'EjecutarScript', ' ', '31', 'iph;tis;dcr;dsp', 'nfn;iph;tis;dcr;scp', ' ', '1'),
169('8', 'Asistente UpdateCache con Imagenes', '../asistentes/AsistenteUpdateCache.php', '../asistentes/gestores/gestor_Comandos.php', 'EjecutarScript', ' ', '31', 'iph;tis;dcr;dsp', 'nfn;iph;tis;dcr;scp', ' ', '0'),
[f9bd401]170('8', 'Asistente Restauracion de Imagenes', '../asistentes/AsistenteRestoreImage.php', '../asistentes/gestores/gestor_Comandos.php', 'EjecutarScript', ' ', '31', 'iph;tis;dcr;dsp', 'nfn;iph;tis;dcr;scp', ' ', '0'),
171('8', 'Asistente Particionado', '../asistentes/AsistenteParticionado.php', '../asistentes/gestores/gestor_Comandos.php', 'EjecutarScript', ' ', '31', 'iph;tis;dcr;dsp', 'nfn;iph;tis;dcr;scp', ' ', '1');
[b9a6500]172
173
[3ec149c]174-- --------------------------------------------------------
175
176--
177-- Estructura de tabla para la tabla `centros`
178--
179
[a190d69]180DROP TABLE IF EXISTS `centros`;
181CREATE TABLE `centros` (
[3ec149c]182  `idcentro` int(11) NOT NULL AUTO_INCREMENT,
183  `nombrecentro` varchar(100) NOT NULL DEFAULT '',
184  `identidad` int(11) DEFAULT NULL,
185  `comentarios` text,
[56529d2]186  `directorio` varchar(50) DEFAULT '',
[3ec149c]187  PRIMARY KEY (`idcentro`)
188) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
189
190
[4329e85]191--
192-- Volcar la base de datos para la tabla `centros`
193--
194INSERT INTO `centros` (`idcentro`,`nombrecentro`,`identidad`,`comentarios`) VALUES
[049ec55c]195 (1,'Unidad Organizativa (Default)',1,'Esta Unidad Organizativa se crea automáticamente en el proceso de instalación de OpenGnsys');
[4329e85]196
197
[3ec149c]198-- --------------------------------------------------------
199
200--
201-- Estructura de tabla para la tabla `comandos`
202--
203
[a190d69]204DROP TABLE IF EXISTS `comandos`;
205CREATE TABLE `comandos` (
[3ec149c]206  `idcomando` int(11) NOT NULL AUTO_INCREMENT,
207  `descripcion` varchar(250) NOT NULL DEFAULT '',
[2ff2099]208  `pagina` varchar(256) NOT NULL DEFAULT '',
209  `gestor` varchar(256) NOT NULL DEFAULT '',
210  `funcion` varchar(64) NOT NULL DEFAULT '',
[3ec149c]211  `urlimg` varchar(250) DEFAULT NULL,
212  `aplicambito` tinyint(4) DEFAULT NULL,
213  `visuparametros` varchar(250) DEFAULT NULL,
214  `parametros` varchar(250) DEFAULT NULL,
215  `comentarios` text,
[2ff2099]216  `activo` tinyint(1) NOT NULL DEFAULT '0',
[d866d6b]217  `submenu` varchar(50) NOT NULL DEFAULT '',
[3ec149c]218  PRIMARY KEY (`idcomando`)
[4329e85]219) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
[3ec149c]220
221--
222-- Volcar la base de datos para la tabla `comandos`
223--
224
[d866d6b]225INSERT INTO `comandos` (`idcomando`, `descripcion`, `pagina`, `gestor`, `funcion`, `urlimg`, `aplicambito`, `visuparametros`, `parametros`, `comentarios`, `activo`, `submenu`) VALUES
226(1, 'Arrancar', '../comandos/Arrancar.php', '../comandos/gestores/gestor_Comandos.php', 'Arrancar', '', 31, '', 'nfn;iph;mac', '', 1, ''),
227(2, 'Apagar', '../comandos/Apagar.php', '../comandos/gestores/gestor_Comandos.php', 'Apagar', '', 31, '', 'nfn;iph;mac', '', 1, ''),
228(3, 'Restaurar Imagen', '../comandos/RestaurarImagen.php', '../comandos/gestores/gestor_Comandos.php', 'RestaurarImagen', '', 28, 'dsk;par;idi;nci;ipr;ptc', 'nfn;iph;mac;dsk;par;idi;nci;ipr;ifs;ptc', '', 1, ''),
229(4, 'Crear Imagen', '../comandos/CrearImagen.php', '../comandos/gestores/gestor_Comandos.php', 'CrearImagen', '', 16, 'dsk;par;idi;nci;ipr;cpt', 'nfn;iph;mac;dsk;par;idi;nci;ipr;cpt;', '', 1, ''),
230(5, 'Reiniciar', '../comandos/Reiniciar.php', '../comandos/gestores/gestor_Comandos.php', 'Reiniciar', '', 31, '', 'nfn;iph;mac;', '', 1, ''),
231(6, 'Inventario Hardware', '../comandos/InventarioHardware.php', '../comandos/gestores/gestor_Comandos.php', 'InventarioHardware', '', 16, '', 'nfn;iph;mac;', '', 1, ''),
[503dac8]232(7, 'Inventario Software', '../comandos/InventarioSoftware.php', '../comandos/gestores/gestor_Comandos.php', 'InventarioSoftware', '', 16, 'dsk;par', 'nfn;iph;mac;dsk;par', '', 1, ''),
[d866d6b]233(8, 'Ejecutar Script', '../comandos/EjecutarScripts.php', '../comandos/gestores/gestor_Comandos.php', 'EjecutarScript', '', 31, 'iph;tis;dcr;scp', 'nfn;iph;tis;dcr;scp', '', 1, ''),
[503dac8]234(9, 'Iniciar Sesion', '../comandos/IniciarSesion.php', '../comandos/gestores/gestor_Comandos.php', 'IniciarSesion', '', 31, 'dsk;par', 'nfn;iph;dsk;par', '', 1, ''),
[bbd5b61]235(10, 'Particionar y Formatear', '../comandos/Configurar.php', '../comandos/gestores/gestor_Comandos.php', 'Configurar', '', 28, 'dsk;cfg;', 'nfn;iph;mac;dsk;cfg;par;cpt;sfi;tam;ope', '', 1, ''),
[d866d6b]236(11, 'Eliminar Imagen Cache', '../comandos/EliminarImagenCache.php', '../comandos/gestores/gestor_Comandos.php', 'EliminarImagenCache', '', 31, 'iph;tis;dcr;scp', 'nfn;iph;tis;dcr;scp', '', 1, ''),
[418464b]237(12, 'Crear Imagen Basica', '../comandos/CrearImagenBasica.php', '../comandos/gestores/gestor_Comandos.php', 'CrearImagenBasica', '', 16, 'dsk;par;cpt;idi;nci;ipr;iph;bpi;cpc;bpc;rti;nba', 'nfn;dsk;par;cpt;idi;nci;ipr;iph;bpi;cpc;bpc;rti;nba', '', 1, 'Sincronizacion'),
238(13, 'Restaurar Imagen Basica', '../comandos/RestaurarImagenBasica.php', '../comandos/gestores/gestor_Comandos.php', 'RestaurarImagenBasica', '', 28, 'dsk;par;idi;nci;ipr;iph;bpi;cpc;bpc;rti;nba;met', 'nfn;dsk;par;idi;nci;ipr;iph;bpi;cpc;bpc;rti;nba;met', '', 1, 'Sincronizacion'),
239(14, 'Crear Software Incremental', '../comandos/CrearSoftIncremental.php', '../comandos/gestores/gestor_Comandos.php', 'CrearSoftIncremental', '', 16, 'dsk;par;idi;nci;ipr;idf;ncf;bpi;cpc;bpc;iph;rti;nba', 'nfn;dsk;par;idi;nci;ipr;idf;ncf;bpi;cpc;bpc;iph;rti;nba', '', 1, 'Sincronizacion'),
[7c4b953]240(15, 'Restaurar Software Incremental', '../comandos/RestaurarSoftIncremental.php', '../comandos/gestores/gestor_Comandos.php', 'RestaurarSoftIncremental', '', 28, 'dsk;par;idi;nci;ipr;idf;ncf;bpi;cpc;bpc;iph;rti;met;nba', 'nfn;dsk;par;idi;nci;ipr;idf;ncf;bpi;cpc;bpc;iph;rti;met;nba', '', 1, 'Sincronizacion'),
[e4fc3fd]241(16, 'Enviar mensaje', '../comandos/EnviarMensaje.php', '../comandos/gestores/gestor_Comandos.php', 'EnviarMensaje', '', 31, 'tit;msj', 'nfn;iph;tit;msj', '', 1, '');
[cbe1fdf]242
243
[3ec149c]244
245-- --------------------------------------------------------
246
247--
248-- Estructura de tabla para la tabla `entidades`
249--
250
[a190d69]251DROP TABLE IF EXISTS `entidades`;
252CREATE TABLE `entidades` (
[3ec149c]253  `identidad` int(11) NOT NULL AUTO_INCREMENT,
254  `nombreentidad` varchar(200) NOT NULL DEFAULT '',
255  `comentarios` text,
256  `iduniversidad` int(11) DEFAULT NULL,
257  `grupoid` int(11) DEFAULT NULL,
[2ff2099]258  `ogunit` tinyint(1) NOT NULL DEFAULT '0',
[3ec149c]259  PRIMARY KEY (`identidad`)
260) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
261
262--
263-- Volcar la base de datos para la tabla `entidades`
264--
265
266INSERT INTO `entidades` (`identidad`, `nombreentidad`, `comentarios`, `iduniversidad`, `grupoid`) VALUES
[049ec55c]267(1, 'Entidad (Default)', 'Esta Entidad se crea automáticamente en el proceso de instalación de OpenGnsys', 1, 0);
[3ec149c]268
269-- --------------------------------------------------------
270
271--
272-- Estructura de tabla para la tabla `entornos`
273--
274
[a190d69]275DROP TABLE IF EXISTS `entornos`;
276CREATE TABLE `entornos` (
[3ec149c]277  `identorno` int(11) NOT NULL AUTO_INCREMENT,
[2ff2099]278  `ipserveradm` varchar(50) NOT NULL DEFAULT '',
279  `portserveradm` int(20) NOT NULL DEFAULT 2008,
280  `protoclonacion` varchar(50) NOT NULL DEFAULT '',
[3ec149c]281  PRIMARY KEY (`identorno`)
282) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
283
284--
285-- Volcar la base de datos para la tabla `entornos`
286--
287
288INSERT INTO `entornos` (`identorno`, `ipserveradm`, `portserveradm`, `protoclonacion`) VALUES
[58d5ad2]289(1, 'SERVERIP', 2008, 'UNICAST');
[3ec149c]290
291-- --------------------------------------------------------
292
293--
294-- Estructura de tabla para la tabla `estatus`
295--
296
[a190d69]297DROP TABLE IF EXISTS `estatus`;
298CREATE TABLE `estatus` (
[3ec149c]299  `idestatus` int(11) NOT NULL AUTO_INCREMENT,
300  `descripcion` varchar(250) NOT NULL DEFAULT '',
301  PRIMARY KEY (`idestatus`)
302) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
303
304--
305-- Volcar la base de datos para la tabla `estatus`
306--
307
308INSERT INTO `estatus` (`idestatus`, `descripcion`) VALUES
309(1, 'P.D.I. ( Profesor)'),
310(2, 'P.A.S.'),
311(3, 'Doctor'),
312(4, 'Alumno'),
313(5, 'Otros');
314
315-- --------------------------------------------------------
316
317--
318-- Estructura de tabla para la tabla `grupos`
319--
320
[a190d69]321DROP TABLE IF EXISTS `grupos`;
322CREATE TABLE `grupos` (
[3ec149c]323  `idgrupo` int(11) NOT NULL AUTO_INCREMENT,
324  `nombregrupo` varchar(250) NOT NULL DEFAULT '',
325  `grupoid` int(11) NOT NULL DEFAULT '0',
326  `tipo` tinyint(4) NOT NULL DEFAULT '0',
327  `idcentro` int(11) NOT NULL DEFAULT '0',
328  `iduniversidad` int(11) DEFAULT NULL,
329  `comentarios` text,
330  PRIMARY KEY (`idgrupo`)
331) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
332
333-- --------------------------------------------------------
334
335--
336-- Estructura de tabla para la tabla `gruposordenadores`
337--
338
[a190d69]339DROP TABLE IF EXISTS `gruposordenadores`;
340CREATE TABLE `gruposordenadores` (
[3ec149c]341  `idgrupo` int(11) NOT NULL AUTO_INCREMENT,
342  `nombregrupoordenador` varchar(250) NOT NULL DEFAULT '',
343  `idaula` int(11) NOT NULL DEFAULT '0',
344  `grupoid` int(11) DEFAULT NULL,
345  `comentarios` text,
346  PRIMARY KEY (`idgrupo`)
347) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
348
349-- --------------------------------------------------------
350
351--
352-- Estructura de tabla para la tabla `hardwares`
353--
354
[a190d69]355DROP TABLE IF EXISTS `hardwares`;
356CREATE TABLE `hardwares` (
[3ec149c]357  `idhardware` int(11) NOT NULL AUTO_INCREMENT,
358  `idtipohardware` int(11) NOT NULL DEFAULT '0',
359  `descripcion` varchar(250) NOT NULL DEFAULT '',
360  `idcentro` int(11) NOT NULL DEFAULT '0',
361  `grupoid` int(11) DEFAULT NULL,
362  PRIMARY KEY (`idhardware`)
363) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
364
365
366-- --------------------------------------------------------
367
368--
369-- Estructura de tabla para la tabla `iconos`
370--
371
[a190d69]372DROP TABLE IF EXISTS `iconos`;
373CREATE TABLE `iconos` (
[3ec149c]374  `idicono` int(11) NOT NULL AUTO_INCREMENT,
375  `urlicono` varchar(200) DEFAULT NULL,
376  `idtipoicono` int(11) DEFAULT NULL,
377  `descripcion` varchar(250) DEFAULT NULL,
378  PRIMARY KEY (`idicono`)
379) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
380
381--
382-- Volcar la base de datos para la tabla `iconos`
383--
384
385INSERT INTO `iconos` (`idicono`, `urlicono`, `idtipoicono`, `descripcion`) VALUES
386(1, 'vga.gif', 1, 'Tarjeta gráfica'),
387(2, 'nic.gif', 1, 'Tarjeta de Red'),
388(3, 'placabase.gif', 1, 'Placas base'),
389(4, 'tsonido.gif', 1, 'Tarjeta de sonido'),
390(5, 'camweb.gif', 1, 'Cámara web'),
391(6, 'logoXP.png', 2, 'Logo Windows XP'),
392(7, 'logolinux.png', 2, 'Logo General de Linux'),
393(8, 'particionar.png', 2, 'Particionar'),
394(9, 'ordenadoroff.png', 2, 'Ordenador apagado'),
395(10, 'ordenadoron.png', 2, 'Ordenador encendido'),
396(11, 'usb.gif', 1, 'Mi icono usb'),
397(12, 'ide.gif', 1, 'Controladores IDE'),
398(13, 'dvdcd.gif', 1, 'Lectoras y grabadoras de DVD'),
399(14, 'audio.gif', 1, 'Dispositivos de audio');
400
401-- --------------------------------------------------------
402
403--
404-- Estructura de tabla para la tabla `idiomas`
405--
406
[a190d69]407DROP TABLE IF EXISTS `idiomas`;
408CREATE TABLE `idiomas` (
[3ec149c]409  `ididioma` int(11) NOT NULL AUTO_INCREMENT,
410  `descripcion` varchar(100) DEFAULT NULL,
411  `nemonico` char(3) DEFAULT NULL,
412  PRIMARY KEY (`ididioma`)
413) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
414
415--
416-- Volcar la base de datos para la tabla `idiomas`
417--
418
419INSERT INTO `idiomas` (`ididioma`, `descripcion`, `nemonico`) VALUES
420(1, 'Español', 'esp'),
[6855821]421(2, 'English', 'eng'),
422(3, 'Català', 'cat');
[3ec149c]423
424-- --------------------------------------------------------
425
426--
427-- Estructura de tabla para la tabla `imagenes`
428--
429
[a190d69]430DROP TABLE IF EXISTS `imagenes`;
431CREATE TABLE `imagenes` (
[3ec149c]432  `idimagen` int(11) NOT NULL AUTO_INCREMENT,
[2ff2099]433  `nombreca` varchar(50) NOT NULL DEFAULT '',
434  `revision` smallint UNSIGNED NOT NULL DEFAULT '0',
[3ec149c]435  `descripcion` varchar(250) NOT NULL DEFAULT '',
436  `idperfilsoft` int(11) DEFAULT NULL,
437  `idcentro` int(11) DEFAULT NULL,
438  `comentarios` text,
439  `grupoid` int(11) DEFAULT NULL,
[2ff2099]440  `idrepositorio` int(11) NOT NULL DEFAULT '0',
441  `idordenador` int(11) NOT NULL DEFAULT '0',
442  `numdisk` smallint NOT NULL DEFAULT '0',
443  `numpar` smallint NOT NULL DEFAULT '0',
444  `codpar` int(8) NOT NULL DEFAULT '0',
[4329e85]445  `tipo` tinyint NULL,
[2ff2099]446  `imagenid` int NOT NULL DEFAULT '0',
[4329e85]447  `ruta` varchar(250) NULL,
[d43c0eb]448  `fechacreacion` datetime DEFAULT NULL,
[2ff2099]449  `inremotepc` tinyint DEFAULT '0',
[3ec149c]450  PRIMARY KEY (`idimagen`)
451) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
452
453-- --------------------------------------------------------
454
455--
456-- Estructura de tabla para la tabla `menus`
457--
458
[a190d69]459DROP TABLE IF EXISTS `menus`;
460CREATE TABLE `menus` (
[3ec149c]461  `idmenu` int(11) NOT NULL AUTO_INCREMENT,
462  `descripcion` varchar(250) NOT NULL DEFAULT '',
463  `idcentro` int(11) NOT NULL DEFAULT '0',
464  `idurlimg` int(11) NOT NULL DEFAULT '0',
465  `titulo` varchar(250) DEFAULT NULL,
466  `modalidad` tinyint(4) DEFAULT NULL,
467  `smodalidad` tinyint(4) DEFAULT NULL,
468  `comentarios` text,
469  `grupoid` int(11) NOT NULL DEFAULT '0',
470  `htmlmenupub` varchar(250) DEFAULT NULL,
471  `htmlmenupri` varchar(250) DEFAULT NULL,
[07a48a4]472  `resolucion` varchar(50) DEFAULT NULL,
[3ec149c]473  PRIMARY KEY (`idmenu`)
474) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
475
476-- --------------------------------------------------------
477
478--
479-- Estructura de tabla para la tabla `nombresos`
480--
481
[a190d69]482DROP TABLE IF EXISTS `nombresos`;
483CREATE TABLE `nombresos` (
[3ec149c]484  `idnombreso` smallint(11) NOT NULL AUTO_INCREMENT,
[2ff2099]485  `nombreso` varchar(250) NOT NULL DEFAULT '',
[3ec149c]486  `idtiposo` int(11) DEFAULT '0',
487  PRIMARY KEY (`idnombreso`)
488) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
489
490-- --------------------------------------------------------
491
492--
[4519fd2]493-- Estructura de tabla para la tabla `ogagent_queue`
494--
495
496DROP TABLE IF EXISTS `ogagent_queue`;
497CREATE TABLE `ogagent_queue` (
498  `id` int(11) NOT NULL AUTO_INCREMENT,
499  `clientid` int(11) NOT NULL,
500  `exectime` datetime DEFAULT NULL,
501  `operation` varchar(25),
502--  `parameters` varchar(100),
503  PRIMARY KEY (`id`)
504) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
505
506-- --------------------------------------------------------
507
508--
[3ec149c]509-- Estructura de tabla para la tabla `ordenadores`
510--
511
[a190d69]512DROP TABLE IF EXISTS `ordenadores`;
513CREATE TABLE `ordenadores` (
[3ec149c]514  `idordenador` int(11) NOT NULL AUTO_INCREMENT,
515  `nombreordenador` varchar(100) DEFAULT NULL,
[695c8e6]516  `numserie` varchar(25) DEFAULT NULL,
[2ff2099]517  `ip` varchar(16) NOT NULL DEFAULT '',
[3ec149c]518  `mac` varchar(12) DEFAULT NULL,
519  `idaula` int(11) DEFAULT NULL,
520  `idperfilhard` int(11) DEFAULT NULL,
521  `idrepositorio` int(11) DEFAULT NULL,
522  `grupoid` int(11) DEFAULT NULL,
523  `idmenu` int(11) DEFAULT NULL,
524  `cache` int(11) DEFAULT NULL,
[2ff2099]525  `router` varchar(16) NOT NULL DEFAULT '',
526  `mascara` varchar(16) NOT NULL DEFAULT '',
527  `idproautoexec` int(11) NOT NULL DEFAULT '0',
[695c8e6]528  `arranque` varchar(30) NOT NULL DEFAULT '00unknown',
[cbe1fdf]529  `netiface` enum('eth0','eth1','eth2') DEFAULT 'eth0',
[695c8e6]530  `netdriver` varchar(30) NOT NULL DEFAULT 'generic',
531  `fotoord` varchar(250) NOT NULL DEFAULT 'fotoordenador.gif',
[5242394]532  `validacion` tinyint(1) DEFAULT '0',
[60b48d3]533  `paginalogin` varchar(100),
[5242394]534  `paginavalidacion` varchar(100),
[2913439]535  `agentkey` varchar(32),
[c311ef2f]536  `oglivedir` varchar(50) NOT NULL DEFAULT 'ogLive',
[e8d2851]537  PRIMARY KEY (`idordenador`),
538  KEY `idaulaip` (`idaula` ASC, `ip` ASC)
[3ec149c]539) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
540
[cbe1fdf]541
542
[3ec149c]543-- --------------------------------------------------------
544
545--
546-- Estructura de tabla para la tabla `ordenadores_particiones`
547--
548
[a190d69]549DROP TABLE IF EXISTS `ordenadores_particiones`;
550CREATE TABLE `ordenadores_particiones` (
[2ff2099]551  `idordenador` int(11) NOT NULL DEFAULT '0',
552  `numdisk` smallint NOT NULL DEFAULT '0',
553  `numpar` smallint NOT NULL DEFAULT '0',
554  `codpar` int(8) NOT NULL DEFAULT '0',
555  `tamano` int(11) NOT NULL DEFAULT '0',
556  `uso` tinyint NOT NULL DEFAULT '0',
557  `idsistemafichero` smallint(11) NOT NULL DEFAULT '0',
558  `idnombreso` smallint(11) NOT NULL DEFAULT '0',
559  `idimagen` int(11) NOT NULL DEFAULT '0',
560  `revision` smallint UNSIGNED NOT NULL DEFAULT '0',
561  `idperfilsoft` int(11) NOT NULL DEFAULT '0',
[942373c]562  `fechadespliegue` datetime NULL,
[d09e1c3]563  `cache` text,
[c7b62bd]564  UNIQUE KEY `idordenadornumdisknumpar` (`idordenador`,`numdisk`,`numpar`)
[3ec149c]565) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
566
567-- --------------------------------------------------------
568
569--
570-- Estructura de tabla para la tabla `parametros`
571--
572
[a190d69]573DROP TABLE IF EXISTS `parametros`;
574CREATE TABLE `parametros` (
[3ec149c]575  `idparametro` int(11) NOT NULL AUTO_INCREMENT,
[2ff2099]576  `nemonico` char(3) NOT NULL DEFAULT '',
[d09e1c3]577  `descripcion` text,
[2ff2099]578  `nomidentificador` varchar(64) NOT NULL DEFAULT '',
579  `nomtabla` varchar(64) NOT NULL DEFAULT '',
580  `nomliteral` varchar(64) NOT NULL DEFAULT '',
[3ec149c]581  `tipopa` tinyint(1) DEFAULT '0',
582  `visual` tinyint(4) NOT NULL DEFAULT '0',
[d866d6b]583  PRIMARY KEY (`idparametro`),
584  KEY (`nemonico`)
[4329e85]585) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=33 ;
[3ec149c]586
587--
588-- Volcar la base de datos para la tabla `parametros`
589--
590
591INSERT INTO `parametros` (`idparametro`, `nemonico`, `descripcion`, `nomidentificador`, `nomtabla`, `nomliteral`, `tipopa`, `visual`) VALUES
592(1, 'nfn', 'Nombre de la función o script a ejecutar en el cliente y que implementa el comando. Es posible que también els ervidor debo ejecutar la misma función como ocurre en el comando "Arrancar" y que implementa el comportamiento del comando en el servidor', '', '', '', 0, 0),
593(2, 'iph', 'Dirección ip de los ordenadores a los que se envía el comando', '', '', '', 0, 0),
594(3, 'ido', 'Identificadores de los ordenadores a los que se envía el comando', '', '', '', 0, 0),
595(4, 'mac', 'Direcciones macs de los clientes a los que se le envía el comando', '', '', '', 0, 0),
596(5, 'idc', 'Unidad organizativa', 'idcentro', 'centros', '', 1, 0),
597(6, 'ida', 'Aula', 'idaula', 'aulas', 'nombreaula', 1, 0),
598(18, 'cfg', 'Configuración', '', '', '', 2, 1),
599(7, 'dsk', 'Disco', '', '', '', 0, 1),
600(8, 'par', 'Partición', '', '', '', 0, 1),
601(9, 'ifh', 'Perfil Hardware', 'idperfilhard', 'perfileshard', 'descripcion', 1, 1),
602(10, 'ifs', 'Perfil Software', 'idperfilsoft', 'perfilessoft', 'descripcion', 1, 1),
603(11, 'idi', 'Imagen', 'idimagen', 'imagenes', 'descripcion', 1, 1),
[4329e85]604(12, 'nci', 'Nombre canónico', '', '', '', 0, 1),
[3ec149c]605(13, 'scp', 'Código a ejecutar en formato script', '', '', '', 0, 0),
606(14, 'npc', 'Nombre del cliente', '', '', '', NULL, 0),
607(15, 'che', 'Tamaño de la cache del cliente', '', '', '', NULL, 0),
608(16, 'exe', 'Identificador del procedimiento que será el que ejecute el cliente al arrancar (Autoexec)', '', '', '', 0, 0),
609(17, 'res', 'Respuesta del comando: Puede tomar los valores 1 o 2 en el caso de que la respuesta sea correcta o que haya un error al ejecutarse.', '', '', '', 0, 0),
610(19, 'ipr', 'Repositorio', 'ip', 'repositorios', 'nombrerepositorio', 1, 1),
611(20, 'cpt', 'Tipo partición', 'codpar', 'tipospar', 'tipopar', 1, 1),
[3997593]612(21, 'sfi', 'Sistema de fichero', 'nemonico', 'sistemasficheros', 'nemonico', 1, 0),
613(22, 'tam', 'Tamaño', '', '', '', 0, 1),
[3ec149c]614(23, 'ope', 'Operación', ';', '', 'Sin operación;Formatear;Ocultar;Mostrar', 3, 1),
615(24, 'nfl', 'Nombre del fichero que se envía o se recibe', '', '', '', 0, 0),
616(25, 'hrd', 'Nombre del archivo de inventario hardware enviado por la red', '', '', '', 0, 0),
617(26, 'sft', 'Nombre del archivo de inventario software enviado por la red', '', '', '', 0, 0),
618(27, 'tpc', 'Tipo de cliente', '', '', '', 0, 0),
619(28, 'scp', 'Código script', '', '', '', 4, 1),
[7bc3088]620(30, 'ptc', 'Protocolo de clonación', ';', '', ';Unicast;Multicast;Torrent', 0, 1),
[d866d6b]621(31, 'idf', 'Imagen Incremental', 'idimagen', 'imagenes', 'descripcion', 1, 1),
622(32, 'ncf', 'Nombre canónico de la Imagen Incremental', '', '', '', 0, 1),
623(33, 'bpi', 'Borrar imagen o partición previamente', '', '', '', 5, 1),
624(34, 'cpc', 'Copiar también en cache', '', '', '', 5, 1),
625(35, 'bpc', 'Borrado previo de la imagen en cache', '', '', '', 5, 1),
626(36, 'rti', 'Ruta de origen', '', '', '', 0, 1),
[9204a04]627(37, 'met', 'Método clonación', ';', '', 'Desde caché; Desde repositorio', 3, 1),
[e4fc3fd]628(38, 'nba', 'No borrar archivos en destino', '', '', '', 0, 1),
629(39, 'tit', 'Título', '', '', '', 0, 1),
630(40, 'msj', 'Contenido', '', '', '', 0, 1);
[3ec149c]631
632-- --------------------------------------------------------
633
634--
635-- Estructura de tabla para la tabla `perfileshard`
[4329e85]636
[3ec149c]637--
638
[a190d69]639DROP TABLE IF EXISTS `perfileshard`;
640CREATE TABLE `perfileshard` (
[3ec149c]641  `idperfilhard` int(11) NOT NULL AUTO_INCREMENT,
642  `descripcion` varchar(250) NOT NULL DEFAULT '',
643  `comentarios` text,
644  `grupoid` int(11) DEFAULT NULL,
[2ff2099]645  `idcentro` int(11) NOT NULL DEFAULT '0',
[40ad2e8d]646  `winboot` enum( 'reboot', 'kexec' ) NOT NULL DEFAULT 'reboot',
[3ec149c]647  PRIMARY KEY (`idperfilhard`)
648) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
649
650
651-- --------------------------------------------------------
652
653--
654-- Estructura de tabla para la tabla `perfileshard_hardwares`
655--
656
[a190d69]657DROP TABLE IF EXISTS `perfileshard_hardwares`;
658CREATE TABLE `perfileshard_hardwares` (
[3ec149c]659  `idperfilhard` int(11) NOT NULL DEFAULT '0',
660  `idhardware` int(11) NOT NULL DEFAULT '0',
661  KEY `idperfilhard` (`idperfilhard`)
662) ENGINE=MyISAM DEFAULT CHARSET=utf8;
663
664-- --------------------------------------------------------
665
666--
667-- Estructura de tabla para la tabla `perfilessoft`
668--
669
[a190d69]670DROP TABLE IF EXISTS `perfilessoft`;
671CREATE TABLE `perfilessoft` (
[3ec149c]672  `idperfilsoft` int(11) NOT NULL AUTO_INCREMENT,
[398dccd]673  `idnombreso` smallint(5) unsigned DEFAULT NULL,
[3ec149c]674  `descripcion` varchar(250) NOT NULL DEFAULT '',
675  `comentarios` text,
676  `grupoid` int(11) DEFAULT NULL,
[2ff2099]677  `idcentro` int(11) NOT NULL DEFAULT '0',
[3ec149c]678  PRIMARY KEY (`idperfilsoft`)
679) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
680
681-- --------------------------------------------------------
682
683--
684-- Estructura de tabla para la tabla `perfilessoft_softwares`
685--
686
[a190d69]687DROP TABLE IF EXISTS `perfilessoft_softwares`;
688CREATE TABLE `perfilessoft_softwares` (
[3ec149c]689  `idperfilsoft` int(11) NOT NULL DEFAULT '0',
690  `idsoftware` int(11) NOT NULL DEFAULT '0'
691) ENGINE=MyISAM DEFAULT CHARSET=utf8;
692
693-- --------------------------------------------------------
694
695--
696-- Estructura de tabla para la tabla `plataformas`
697--
698
[a190d69]699DROP TABLE IF EXISTS `plataformas`;
700CREATE TABLE `plataformas` (
[3ec149c]701  `idplataforma` int(11) NOT NULL AUTO_INCREMENT,
[2ff2099]702  `plataforma` varchar(250) NOT NULL DEFAULT '',
[3ec149c]703  PRIMARY KEY (`idplataforma`)
704) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;
705
706--
707-- Volcar la base de datos para la tabla `plataformas`
708--
709
710INSERT INTO `plataformas` (`idplataforma`, `plataforma`) VALUES
711(1, 'MsDos'),
712(2, 'Windows'),
713(3, 'Linux'),
714(4, 'Mac'),
715(5, 'OS');
716
717-- --------------------------------------------------------
718
719--
720-- Estructura de tabla para la tabla `procedimientos`
721--
722
[a190d69]723DROP TABLE IF EXISTS `procedimientos`;
724CREATE TABLE `procedimientos` (
[3ec149c]725  `idprocedimiento` int(11) NOT NULL AUTO_INCREMENT,
726  `descripcion` varchar(250) NOT NULL DEFAULT '',
727  `urlimg` varchar(250) DEFAULT NULL,
728  `idcentro` int(11) NOT NULL DEFAULT '0',
729  `comentarios` text,
730  `grupoid` int(11) DEFAULT '0',
731  PRIMARY KEY (`idprocedimiento`)
732) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
733
734-- --------------------------------------------------------
735
736--
737-- Estructura de tabla para la tabla `procedimientos_acciones`
738--
739
[a190d69]740DROP TABLE IF EXISTS `procedimientos_acciones`;
741CREATE TABLE `procedimientos_acciones` (
[3ec149c]742  `idprocedimientoaccion` int(11) NOT NULL AUTO_INCREMENT,
743  `idprocedimiento` int(11) NOT NULL DEFAULT '0',
744  `orden` smallint(4) DEFAULT NULL,
745  `idcomando` int(11) NOT NULL DEFAULT '0',
746  `parametros` text,
[2ff2099]747  `procedimientoid` int(11) NOT NULL DEFAULT '0',
[3ec149c]748  PRIMARY KEY (`idprocedimientoaccion`)
749) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
750
751-- --------------------------------------------------------
752
753--
754-- Estructura de tabla para la tabla `programaciones`
755--
756
[a190d69]757DROP TABLE IF EXISTS `programaciones`;
758CREATE TABLE `programaciones` (
[3ec149c]759  `idprogramacion` int(11) NOT NULL AUTO_INCREMENT,
760  `tipoaccion` int(11) DEFAULT NULL,
761  `identificador` int(11) DEFAULT NULL,
762  `nombrebloque` varchar(255) DEFAULT NULL,
[da380e9]763  `annos` smallint DEFAULT NULL,
764  `meses` smallint DEFAULT NULL,
[3ec149c]765  `diario` int(11) DEFAULT NULL,
766  `dias` tinyint(4) DEFAULT NULL,
767  `semanas` tinyint(4) DEFAULT NULL,
768  `horas` smallint(4) DEFAULT NULL,
769  `ampm` tinyint(1) DEFAULT NULL,
770  `minutos` tinyint(4) DEFAULT NULL,
771  `segundos` tinyint(4) DEFAULT NULL,
772  `horasini` smallint(4) DEFAULT NULL,
773  `ampmini` tinyint(1) DEFAULT NULL,
774  `minutosini` tinyint(4) DEFAULT NULL,
775  `horasfin` smallint(4) DEFAULT NULL,
776  `ampmfin` tinyint(1) DEFAULT NULL,
777  `minutosfin` tinyint(4) DEFAULT NULL,
778  `suspendida` tinyint(1) DEFAULT NULL,
[2ff2099]779  `sesion` int(11) NOT NULL DEFAULT '0',
[3ec149c]780  PRIMARY KEY (`idprogramacion`)
781) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
782
783-- --------------------------------------------------------
784
785--
[cc34367]786-- Estructura de tabla para la tabla `remotepc`
787--
788
[a190d69]789DROP TABLE IF EXISTS `remotepc`;
790CREATE TABLE `remotepc` (
[cc34367]791  `id` int(11) NOT NULL,
[d8b6c70]792  `reserved` datetime DEFAULT NULL,
[cc34367]793  `urllogin` varchar(100),
794  `urllogout` varchar(100),
[b46042c]795  `language` varchar(5),
[cc34367]796  PRIMARY KEY (`id`)
797) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
798
799-- --------------------------------------------------------
800
801--
[3ec149c]802-- Estructura de tabla para la tabla `repositorios`
803--
804
[a190d69]805DROP TABLE IF EXISTS `repositorios`;
806CREATE TABLE `repositorios` (
[3ec149c]807  `idrepositorio` int(11) NOT NULL AUTO_INCREMENT,
[2ff2099]808  `nombrerepositorio` varchar(250) NOT NULL DEFAULT '',
[3ec149c]809  `ip` varchar(15) NOT NULL DEFAULT '',
810  `idcentro` int(11) DEFAULT NULL,
811  `grupoid` int(11) DEFAULT NULL,
812  `comentarios` text,
[15acccd]813  `apikey` varchar(32) NOT NULL DEFAULT '',
[3ec149c]814  PRIMARY KEY (`idrepositorio`)
815) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
816
[60ea634]817INSERT INTO `repositorios` (`idrepositorio`,`nombrerepositorio`,`ip`,`idcentro`,`grupoid`,`comentarios`,`apikey`) VALUES
818 (1,'Repositorio (Default)','SERVERIP',1,0,'','REPOKEY');
[58d5ad2]819
820
[3ec149c]821-- --------------------------------------------------------
822
823--
824-- Estructura de tabla para la tabla `sistemasficheros`
825--
826
[a190d69]827DROP TABLE IF EXISTS `sistemasficheros`;
828CREATE TABLE `sistemasficheros` (
[3ec149c]829  `idsistemafichero` smallint(11) NOT NULL AUTO_INCREMENT,
830  `descripcion` varchar(50) NOT NULL DEFAULT '',
831  `nemonico` varchar(16) DEFAULT NULL,
[2ff2099]832  `codpar` int(8) NOT NULL DEFAULT '0',
[2fae4340]833  PRIMARY KEY (`idsistemafichero`),
[ed5611d]834  UNIQUE KEY (`descripcion`)
[3ec149c]835) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[ed5611d]836INSERT INTO `sistemasficheros` (`idsistemafichero`, `descripcion`, `nemonico`, `codpar`) VALUES
837 (1, 'EMPTY', 'EMPTY', 0),
838 (2, 'CACHE', 'CACHE', 0),
839 (3, 'BTRFS', 'BTRFS', 0),
840 (4, 'EXT2', 'EXT2', 0),
841 (5, 'EXT3', 'EXT3', 0),
842 (6, 'EXT4', 'EXT4', 0),
843 (7, 'FAT12', 'FAT12', 0),
844 (8, 'FAT16', 'FAT16', 0),
845 (9, 'FAT32', 'FAT32', 0),
846 (10, 'HFS', 'HFS', 0),
847 (11, 'HFSPLUS', 'HFSPLUS', 0),
848 (12, 'JFS', 'JFS', 0),
849 (13, 'NTFS', 'NTFS', 0),
850 (14, 'REISERFS', 'REISERFS', 0),
851 (15, 'REISER4', 'REISER4', 0),
852 (16, 'UFS', 'UFS', 0),
[cbc2d27]853 (17, 'XFS', 'XFS', 0),
[a616248]854 (18, 'EXFAT', 'EXFAT', 0),
855 (19, 'LINUX-SWAP', 'LINUX-SWAP', 0),
856 (20, 'F2FS', 'F2FS', 0),
857 (21, 'NILFS2', 'NILFS2', 0);
[ed5611d]858
[3ec149c]859
860-- --------------------------------------------------------
861
862--
863-- Estructura de tabla para la tabla `softwares`
864--
865
[a190d69]866DROP TABLE IF EXISTS `softwares`;
867CREATE TABLE `softwares` (
[3ec149c]868  `idsoftware` int(11) NOT NULL AUTO_INCREMENT,
869  `idtiposoftware` int(11) NOT NULL DEFAULT '0',
870  `descripcion` varchar(250) NOT NULL DEFAULT '',
871  `idcentro` int(11) NOT NULL DEFAULT '0',
872  `urlimg` varchar(250) DEFAULT NULL,
873  `idtiposo` int(11) DEFAULT NULL,
874  `grupoid` int(11) DEFAULT NULL,
875  PRIMARY KEY (`idsoftware`)
876) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
877
878-- --------------------------------------------------------
879
880--
881-- Estructura de tabla para la tabla `tareas`
882--
883
[a190d69]884DROP TABLE IF EXISTS `tareas`;
885CREATE TABLE `tareas` (
[3ec149c]886  `idtarea` int(11) NOT NULL AUTO_INCREMENT,
887  `descripcion` varchar(250) NOT NULL DEFAULT '',
888  `urlimg` varchar(250) DEFAULT NULL,
889  `idcentro` int(11) NOT NULL DEFAULT '0',
890  `ambito` smallint(6) NOT NULL DEFAULT '0',
891  `idambito` int(11) NOT NULL DEFAULT '0',
[d09e1c3]892  `restrambito` text,
[3ec149c]893  `comentarios` text,
894  `grupoid` int(11) DEFAULT '0',
895  PRIMARY KEY (`idtarea`)
896) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1;
897
898-- --------------------------------------------------------
899
900--
901-- Estructura de tabla para la tabla `tareas_acciones`
902--
903
[a190d69]904DROP TABLE IF EXISTS `tareas_acciones`;
905CREATE TABLE `tareas_acciones` (
[3ec149c]906  `idtareaaccion` int(11) NOT NULL AUTO_INCREMENT,
907  `idtarea` int(11) NOT NULL DEFAULT '0',
908  `orden` smallint(6) NOT NULL DEFAULT '0',
909  `idprocedimiento` int(11) NOT NULL DEFAULT '0',
910  `tareaid` int(11) DEFAULT '0',
911  PRIMARY KEY (`idtareaaccion`)
912) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
913
914-- --------------------------------------------------------
915
916--
917-- Estructura de tabla para la tabla `tipohardwares`
918--
919
[a190d69]920DROP TABLE IF EXISTS `tipohardwares`;
921CREATE TABLE `tipohardwares` (
[3ec149c]922  `idtipohardware` int(11) NOT NULL AUTO_INCREMENT,
923  `descripcion` varchar(250) NOT NULL DEFAULT '',
924  `urlimg` varchar(250) NOT NULL DEFAULT '',
[2ff2099]925  `nemonico` char(3) NOT NULL DEFAULT '',
[3ec149c]926  PRIMARY KEY (`idtipohardware`)
927) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=17 ;
928
929--
930-- Volcar la base de datos para la tabla `tipohardwares`
931--
932
[da00a02]933INSERT INTO `tipohardwares` (`idtipohardware`, `descripcion`, `urlimg`, `nemonico`) VALUES
[6f62a1a]934(1, 'Placas', '../images/iconos/placabase.gif', 'boa'),
935(2, 'Dispositivos Multimedia', '../images/iconos/tsonido.gif', 'mul'),
936(3, 'Tarjetas de Red', '../images/iconos/nic.gif', 'net'),
937(4, 'Microprocesadores', '../images/iconos/micro.gif', 'cpu'),
938(5, 'Memorias', '../images/iconos/confihard.gif', 'mem'),
939(7, 'Tarjetas gráficas', '../images/iconos/vga.gif', 'vga'),
940(8, 'Discos', '../images/iconos/discoduro.gif', 'dis'),
941(9, 'Dispositivos de sonido', '../images/iconos/audio.gif', 'aud'),
942(10, 'Marca y modelo del equipo', '../images/iconos/confihard.gif', 'mod'),
943(11, 'Modelo y version de la bios', '../images/iconos/confihard.gif', 'bio'),
944(12, 'Modelo de grabadora o  grabadora de CD/DVD', '../images/iconos/dvdcd.gif', 'cdr'),
945(13, 'Controladores IDE', '../images/iconos/ide.gif', 'ide'),
946(14, 'Controladores FireWire', '../images/iconos/confihard.gif', 'fir'),
947(15, 'Controladores USB', '../images/iconos/usb.gif', 'usb'),
948(16, 'Bus del Sistema', '../images/iconos/confihard.gif', 'bus'),
949(17, 'Chasis del Sistema', '', 'cha'),
[aaf5f9f]950(18, 'Controladores de almacenamiento', '../images/iconos/almacenamiento.png', 'sto'),
951(19, 'Tipo de proceso de arranque', '../images/iconos/arranque.png', 'boo');
[3ec149c]952
953-- --------------------------------------------------------
954
955--
956-- Estructura de tabla para la tabla `tiposoftwares`
957--
958
[a190d69]959DROP TABLE IF EXISTS `tiposoftwares`;
960CREATE TABLE `tiposoftwares` (
[3ec149c]961  `idtiposoftware` int(11) NOT NULL AUTO_INCREMENT,
962  `descripcion` varchar(250) NOT NULL DEFAULT '',
963  `urlimg` varchar(250) NOT NULL DEFAULT '',
964  PRIMARY KEY (`idtiposoftware`)
965) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
966
967--
968-- Volcar la base de datos para la tabla `tiposoftwares`
969--
970
971INSERT INTO `tiposoftwares` (`idtiposoftware`, `descripcion`, `urlimg`) VALUES
972(1, 'Sistemas Operativos', '../images/iconos/so.gif'),
973(2, 'Aplicaciones', '../images/iconos/aplicaciones.gif'),
974(3, 'Archivos', '../images/iconos/archivos.gif');
975
976-- --------------------------------------------------------
977
978--
979-- Estructura de tabla para la tabla `tiposos`
980--
981
[a190d69]982DROP TABLE IF EXISTS `tiposos`;
983CREATE TABLE `tiposos` (
[3ec149c]984  `idtiposo` int(11) NOT NULL AUTO_INCREMENT,
[2ff2099]985  `tiposo` varchar(250) NOT NULL DEFAULT '',
986  `idplataforma` int(11) NOT NULL DEFAULT '0',
[3ec149c]987  PRIMARY KEY (`idtiposo`)
988) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=21 ;
989
990--
991-- Volcar la base de datos para la tabla `tiposos`
992--
993
994INSERT INTO `tiposos` (`idtiposo`, `tiposo`, `idplataforma`) VALUES
995(1, 'MsDos 6.0', 1),
996(2, 'Windows 98', 2),
997(3, 'Linux Ubuntu', 3),
998(4, 'Mac', 0),
999(5, 'OS', 0),
1000(17, 'Windows XP', 2),
1001(18, 'Windows Vista', 2),
1002(19, 'Linux Red Hat', 3),
1003(20, 'Windows 7', 2);
1004
1005-- --------------------------------------------------------
1006
1007--
1008-- Estructura de tabla para la tabla `tipospar`
1009--
1010
[a190d69]1011DROP TABLE IF EXISTS `tipospar`;
1012CREATE TABLE `tipospar` (
[e88c0b1]1013  `codpar` int(8) NOT NULL,
[2ff2099]1014  `tipopar` varchar(250) NOT NULL DEFAULT '',
1015  `clonable` tinyint(4) NOT NULL DEFAULT '0',
[3ec149c]1016  UNIQUE KEY `codpar` (`codpar`)
1017) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1018
1019--
1020-- Volcar la base de datos para la tabla `tipospar`
1021--
1022
1023INSERT INTO `tipospar` (`codpar`, `tipopar`, `clonable`) VALUES
1024(0, 'EMPTY', 0),
1025(1, 'FAT12', 1),
1026(5, 'EXTENDED', 0),
[e88c0b1]1027(6, 'FAT16', 1),
[3ec149c]1028(7, 'NTFS', 1),
[e88c0b1]1029(CONV('0B',16,10), 'FAT32', 1),
1030(CONV('11',16,10), 'HFAT12', 1),
1031(CONV('16',16,10), 'HFAT16', 1),
1032(CONV('17',16,10), 'HNTFS', 1),
1033(CONV('1B',16,10), 'HFAT32', 1),
1034(CONV('82',16,10), 'LINUX-SWAP', 0),
1035(CONV('83',16,10), 'LINUX', 1),
1036(CONV('8E',16,10), 'LINUX-LVM', 1),
1037(CONV('A5',16,10), 'FREEBSD', 1),
1038(CONV('A6',16,10), 'OPENBSD', 1),
[822d4f5]1039(CONV('A9',16,10), 'NETBSD', 1),
[e88c0b1]1040(CONV('AF',16,10), 'HFS', 1),
1041(CONV('BE',16,10), 'SOLARIS-BOOT', 1),
1042(CONV('BF',16,10), 'SOLARIS', 1),
1043(CONV('CA',16,10), 'CACHE', 0),
1044(CONV('DA',16,10), 'DATA', 1),
1045(CONV('EE',16,10), 'GPT', 0),
[cbc2d27]1046(CONV('EF',16,10), 'EFI', 1),
[e88c0b1]1047(CONV('FB',16,10), 'VMFS', 1),
1048(CONV('FD',16,10), 'LINUX-RAID', 1),
1049(CONV('0700',16,10), 'WINDOWS', 1),
[77648b6]1050(CONV('0C01',16,10), 'WIN-RESERV', 1),
[822d4f5]1051(CONV('2700',16,10), 'WIN-RECOV', 1),
[77648b6]1052(CONV('7F00',16,10), 'CHROMEOS-KRN', 1),
1053(CONV('7F01',16,10), 'CHROMEOS', 1),
1054(CONV('7F02',16,10), 'CHROMEOS-RESERV', 1),
[e88c0b1]1055(CONV('8200',16,10), 'LINUX-SWAP', 0),
1056(CONV('8300',16,10), 'LINUX', 1),
[77648b6]1057(CONV('8301',16,10), 'LINUX-RESERV', 1),
[822d4f5]1058(CONV('8302',16,10), 'LINUX', 1),
[e88c0b1]1059(CONV('8E00',16,10), 'LINUX-LVM', 1),
1060(CONV('A500',16,10), 'FREEBSD-DISK', 0),
1061(CONV('A501',16,10), 'FREEBSD-BOOT', 1),
1062(CONV('A502',16,10), 'FREEBSD-SWAP', 0),
1063(CONV('A503',16,10), 'FREEBSD', 1),
[822d4f5]1064(CONV('A504',16,10), 'FREEBSD', 1),
1065(CONV('A901',16,10), 'NETBSD-SWAP', 0),
1066(CONV('A902',16,10), 'NETBSD', 1),
1067(CONV('A903',16,10), 'NETBSD', 1),
1068(CONV('A904',16,10), 'NETBSD', 1),
1069(CONV('A905',16,10), 'NETBSD', 1),
1070(CONV('A906',16,10), 'NETBSD-RAID', 1),
[fea9dfb]1071(CONV('AB00',16,10), 'HFS-BOOT', 1),
[e88c0b1]1072(CONV('AF00',16,10), 'HFS', 1),
[77648b6]1073(CONV('AF01',16,10), 'HFS-RAID', 1),
[822d4f5]1074(CONV('AF02',16,10), 'HFS-RAID', 1),
[e88c0b1]1075(CONV('BE00',16,10), 'SOLARIS-BOOT', 1),
1076(CONV('BF00',16,10), 'SOLARIS', 1),
1077(CONV('BF01',16,10), 'SOLARIS', 1),
1078(CONV('BF02',16,10), 'SOLARIS-SWAP', 0),
1079(CONV('BF03',16,10), 'SOLARIS-DISK', 1),
1080(CONV('BF04',16,10), 'SOLARIS', 1),
1081(CONV('BF05',16,10), 'SOLARIS', 1),
[77648b6]1082(CONV('CA00',16,10), 'CACHE', 0),
[cbc2d27]1083(CONV('EF00',16,10), 'EFI', 1),
[e88c0b1]1084(CONV('EF01',16,10), 'MBR', 0),
1085(CONV('EF02',16,10), 'BIOS-BOOT', 0),
[822d4f5]1086(CONV('FB00',16,10), 'VMFS', 1),
1087(CONV('FB01',16,10), 'VMFS-RESERV', 1),
1088(CONV('FB02',16,10), 'VMFS-KRN', 1),
[e88c0b1]1089(CONV('FD00',16,10), 'LINUX-RAID', 1),
[dee9fac]1090(CONV('FFFF',16,10), 'UNKNOWN', 1),
1091(CONV('10000',16,10), 'LVM-LV', 1),
1092(CONV('10010',16,10), 'ZFS-VOL', 1);
1093
[3ec149c]1094
1095-- --------------------------------------------------------
1096
1097--
1098-- Estructura de tabla para la tabla `universidades`
1099--
1100
[a190d69]1101DROP TABLE IF EXISTS `universidades`;
1102CREATE TABLE `universidades` (
[3ec149c]1103  `iduniversidad` int(11) NOT NULL AUTO_INCREMENT,
1104  `nombreuniversidad` varchar(200) NOT NULL DEFAULT '',
1105  `comentarios` text,
1106  PRIMARY KEY (`iduniversidad`)
1107) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
1108
1109--
1110-- Volcar la base de datos para la tabla `universidades`
1111--
1112
1113INSERT INTO `universidades` (`iduniversidad`, `nombreuniversidad`, `comentarios`) VALUES
[049ec55c]1114(1, 'Universidad (Default)', 'Esta Universidad se crea automáticamentese en el proceso de instalación de OpenGnsys');
[3ec149c]1115
1116-- --------------------------------------------------------
1117
1118--
1119-- Estructura de tabla para la tabla `urlimagesitems`
1120--
1121
[a190d69]1122DROP TABLE IF EXISTS `urlimagesitems`;
1123CREATE TABLE `urlimagesitems` (
[3ec149c]1124  `idurlimagesitems` int(11) NOT NULL AUTO_INCREMENT,
1125  `descripcion` varchar(250) NOT NULL DEFAULT '',
1126  PRIMARY KEY (`idurlimagesitems`)
1127) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
1128
1129--
1130-- Volcar la base de datos para la tabla `urlimagesitems`
1131--
1132
1133
1134-- --------------------------------------------------------
1135
1136--
1137-- Estructura de tabla para la tabla `usuarios`
1138--
1139
[a190d69]1140DROP TABLE IF EXISTS `usuarios`;
1141CREATE TABLE `usuarios` (
[3ec149c]1142  `idusuario` int(11) NOT NULL AUTO_INCREMENT,
1143  `usuario` varchar(50) NOT NULL DEFAULT '',
[2b2311f]1144  `pasguor` varchar(56) NOT NULL DEFAULT '',
[3ec149c]1145  `nombre` varchar(200) DEFAULT NULL,
1146  `email` varchar(200) DEFAULT NULL,
1147  `ididioma` int(11) DEFAULT NULL,
1148  `idtipousuario` tinyint(4) DEFAULT NULL,
[216105a]1149  `apikey` varchar(32) NOT NULL DEFAULT '',
[3ec149c]1150  PRIMARY KEY (`idusuario`)
1151) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
1152
1153--
1154-- Volcar la base de datos para la tabla `usuarios`
1155--
1156
[da00a02]1157INSERT INTO `usuarios` (`idusuario`, `usuario`, `pasguor`, `nombre`, `email`, `ididioma`, `idtipousuario`, `apikey`) VALUES
[3ac11d4]1158(1, 'DBUSER', SHA2('DBPASSWORD', 224), 'Usuario de la base de datos MySql', '', 1, 1, 'APIKEY');
[3ec149c]1159
[cbe1fdf]1160
Note: See TracBrowser for help on using the repository browser.