summaryrefslogtreecommitdiffstats
path: root/admin/Database/ogAdmBD-1.1.0pre.sql
diff options
context:
space:
mode:
Diffstat (limited to 'admin/Database/ogAdmBD-1.1.0pre.sql')
-rw-r--r--admin/Database/ogAdmBD-1.1.0pre.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/admin/Database/ogAdmBD-1.1.0pre.sql b/admin/Database/ogAdmBD-1.1.0pre.sql
index 5f8c0262..e85fe178 100644
--- a/admin/Database/ogAdmBD-1.1.0pre.sql
+++ b/admin/Database/ogAdmBD-1.1.0pre.sql
@@ -161,3 +161,13 @@ 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;
+
+# 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;
+