summaryrefslogtreecommitdiffstats
path: root/admin/Database
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2017-04-24 09:41:42 +0000
committerramon <ramongomez@us.es>2017-04-24 09:41:42 +0000
commitd8b6c70eccacbbb2f8da6c9b6cb084586a8403a1 (patch)
treef5ef838716eff313b621a76896aa52fed00c80d8 /admin/Database
parent0dcf48ad78e304ff24764c332c4e7aaeca1c5e36 (diff)
#708: Establecer tiempo máximo de reserva para que un equipo pueda ser usado en acceso remoto.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5275 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Database')
-rw-r--r--admin/Database/ogAdmBD-1.0.6b-1.1.0pre.sql2
-rw-r--r--admin/Database/ogAdmBD-1.1.0pre.sql23
-rw-r--r--admin/Database/ogAdmBD.sql2
3 files changed, 14 insertions, 13 deletions
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`)