From d8b6c70eccacbbb2f8da6c9b6cb084586a8403a1 Mon Sep 17 00:00:00 2001 From: ramon Date: Mon, 24 Apr 2017 09:41:42 +0000 Subject: #708: Establecer tiempo máximo de reserva para que un equipo pueda ser usado en acceso remoto. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://opengnsys.es/svn/branches/version1.1@5275 a21b9725-9963-47de-94b9-378ad31fedc9 --- admin/Database/ogAdmBD-1.0.6b-1.1.0pre.sql | 2 +- admin/Database/ogAdmBD-1.1.0pre.sql | 23 ++++++++++++----------- admin/Database/ogAdmBD.sql | 2 +- 3 files changed, 14 insertions(+), 13 deletions(-) (limited to 'admin/Database') diff --git a/admin/Database/ogAdmBD-1.0.6b-1.1.0pre.sql b/admin/Database/ogAdmBD-1.0.6b-1.1.0pre.sql index 9b55df50..f3a24eef 100644 --- a/admin/Database/ogAdmBD-1.0.6b-1.1.0pre.sql +++ b/admin/Database/ogAdmBD-1.0.6b-1.1.0pre.sql @@ -101,7 +101,7 @@ ALTER TABLE aulas # Nueva tabla para datos del proyecto Remote PC (ticket #708). CREATE TABLE IF NOT EXISTS remotepc ( id INT(11) NOT NULL, - reserved TINYINT(1) DEFAULT '0', + reserved DATETIME DEFAULT NULL, urllogin VARCHAR(100), urllogout VARCHAR(100), PRIMARY KEY (id) diff --git a/admin/Database/ogAdmBD-1.1.0pre.sql b/admin/Database/ogAdmBD-1.1.0pre.sql index fb3b0639..1ae81ddb 100644 --- a/admin/Database/ogAdmBD-1.1.0pre.sql +++ b/admin/Database/ogAdmBD-1.1.0pre.sql @@ -171,25 +171,26 @@ INSERT INTO tipohardwares (idtipohardware, descripcion, urlimg, nemonico) VALUES # Número de puestos del aula permite valores hasta 32768 (ticket #747) ALTER TABLE aulas - MODIFY puestos smallint DEFAULT NULL; + MODIFY puestos smallint DEFAULT NULL; # Nueva tabla para datos del proyecto Remote PC (ticket #708). CREATE TABLE IF NOT EXISTS remotepc ( - id INT(11) NOT NULL, - reserved TINYINT(1) DEFAULT '0', - urllogin VARCHAR(100), - urllogout VARCHAR(100), - PRIMARY KEY (id) - ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + id INT(11) NOT NULL, + reserved DATETIME DEFAULT NULL, + urllogin VARCHAR(100), + urllogout VARCHAR(100), + PRIMARY KEY (id) + ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +ALTER TABLE remotepc + MODIFY reserved DATETIME DEFAULT NULL; # Nuevo comando "Enviar mensaje" (ticket #779) INSERT INTO `comandos` (`idcomando`, `descripcion`, `pagina`, `gestor`, `funcion`, `urlimg`, `aplicambito`, `visuparametros`, `parametros`, `comentarios`, `activo`, `submenu`) VALUES - (16, 'Enviar mensaje', '../comandos/EnviarMensaje.php', '../comandos/gestores/gestor_Comandos.php', 'EnviarMensaje', '', - 31, '', '', '', 1, '' ); + (16, 'Enviar mensaje', '../comandos/EnviarMensaje.php', '../comandos/gestores/gestor_Comandos.php', 'EnviarMensaje', '', 31, '', '', '', 1, '' ); INSERT INTO parametros (idparametro, nemonico, descripcion, nomidentificador, nomtabla, nomliteral, tipopa, visual) VALUES - (39, 'tit', 'Título', '', '', '', 0, 1), - (40, 'msj', 'Contenido', '', '', '', 0, 1); + (39, 'tit', 'Título', '', '', '', 0, 1), + (40, 'msj', 'Contenido', '', '', '', 0, 1); # Evitar error de MySQL con modo NO_ZERO_DATE (ticket #730). ALTER TABLE acciones diff --git a/admin/Database/ogAdmBD.sql b/admin/Database/ogAdmBD.sql index 290d4f23..888f68b6 100644 --- a/admin/Database/ogAdmBD.sql +++ b/admin/Database/ogAdmBD.sql @@ -741,7 +741,7 @@ CREATE TABLE IF NOT EXISTS `programaciones` ( CREATE TABLE IF NOT EXISTS `remotepc` ( `id` int(11) NOT NULL, - `reserved` tinyint(1) DEFAULT '0', + `reserved` datetime DEFAULT NULL, `urllogin` varchar(100), `urllogout` varchar(100), PRIMARY KEY (`id`) -- cgit v1.2.3-18-g5258