diff options
-rw-r--r-- | admin/Database/ogAdmBD-1.0.6-1.1.0pre.sql | 29 | ||||
-rw-r--r-- | admin/Database/ogAdmBD.sql | 3 |
2 files changed, 31 insertions, 1 deletions
diff --git a/admin/Database/ogAdmBD-1.0.6-1.1.0pre.sql b/admin/Database/ogAdmBD-1.0.6-1.1.0pre.sql index af3342c6..6b06d965 100644 --- a/admin/Database/ogAdmBD-1.0.6-1.1.0pre.sql +++ b/admin/Database/ogAdmBD-1.0.6-1.1.0pre.sql @@ -2,4 +2,33 @@ # OpenGnSys 1.0.6 - 1.1.0 #use ogAdmBD +# Nuevos tipos de particiones. +INSERT INTO tipospar (codpar, tipopar, clonable) VALUES + (CONV('A9',16,10), 'NETBSD', 1), + (CONV('2700',16,10), 'WIN-RECOV', 1), + (CONV('8302',16,10), 'LINUX', 1), + (CONV('A504',16,10), 'FREEBSD', 1), + (CONV('A901',16,10), 'NETBSD-SWAP', 0), + (CONV('A902',16,10), 'NETBSD', 1), + (CONV('A903',16,10), 'NETBSD', 1), + (CONV('A904',16,10), 'NETBSD', 1), + (CONV('A905',16,10), 'NETBSD', 1), + (CONV('A906',16,10), 'NETBSD-RAID', 1), + (CONV('AF02',16,10), 'HFS-RAID', 1), + (CONV('FB00',16,10), 'VMFS', 1), + (CONV('FB01',16,10), 'VMFS-RESERV', 1), + (CONV('FB02',16,10), 'VMFS-KRN', 1); + ON DUPLICATE KEY UPDATE + codpar=VALUES(codpar), tipopar=VALUES(tipopar), clonable=VALUES(clonable); + +# Añadir campo para incluir aulas en proyecto Remote PC (ticket #708). +ALTER TABLE aulas + ADD inremotepc TINYINT DEFAULT 0: +# Añadir campo para clave de acceso a la API REST (ticket #708). +ALTER TABLE usuarios + ADD apikey VARCHAR(32) NOT NULL DEFAULT ''; + +# Añadir campo para porcentaje de uso de sistema de ficheros (ticket #711) +ALTER TABLE ordenadores_particiones + ADD uso TINYINT NOT NULL DEFAULT 0, diff --git a/admin/Database/ogAdmBD.sql b/admin/Database/ogAdmBD.sql index 15822364..0d2c8725 100644 --- a/admin/Database/ogAdmBD.sql +++ b/admin/Database/ogAdmBD.sql @@ -506,6 +506,7 @@ CREATE TABLE IF NOT EXISTS `ordenadores_particiones` ( `numpar` smallint NOT NULL, `codpar` int(8) NOT NULL, `tamano` int(11) NOT NULL, + `uso` tinyint NOT NULL DEFAULT 0, `idsistemafichero` smallint(11) NOT NULL, `idnombreso` smallint(11) NOT NULL, `idimagen` int(11) NOT NULL, @@ -1050,7 +1051,7 @@ CREATE TABLE IF NOT EXISTS `usuarios` ( `email` varchar(200) DEFAULT NULL, `ididioma` int(11) DEFAULT NULL, `idtipousuario` tinyint(4) DEFAULT NULL, - `apikey` varchar(32) NOT NULL, + `apikey` varchar(32) NOT NULL DEFAULT '', PRIMARY KEY (`idusuario`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; |