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 cf701e9 was
71b7511,
checked in by Ramón M. Gómez <ramongomez@…>, 6 years ago
|
#915: Update the database for Wizards to use the REST API.
|
-
Property mode set to
100644
|
File size:
907 bytes
|
Line | |
---|
1 | ### Fichero de actualización de la base de datos. |
---|
2 | # OpenGnsys 1.1.0, 1.1.0a - OpenGnsys 1.1.1 |
---|
3 | #use ogAdmBD |
---|
4 | |
---|
5 | # Nuevos tipos de particiones. |
---|
6 | INSERT INTO tipospar (codpar, tipopar, clonable) VALUES |
---|
7 | (CONV('27',16,10), 'HNTFS-WINRE', 1) |
---|
8 | ON DUPLICATE KEY UPDATE |
---|
9 | codpar=VALUES(codpar), tipopar=VALUES(tipopar), clonable=VALUES(clonable); |
---|
10 | |
---|
11 | # Añadir campo para incluir PC de profesor de aula (ticket #816). |
---|
12 | ALTER TABLE aulas |
---|
13 | ADD idordprofesor INT(11) DEFAULT 0 AFTER puestos; |
---|
14 | |
---|
15 | # Borrar campos sin uso del antiguo servicio ogAdmRepo (ticket #875). |
---|
16 | ALTER TABLE repositorios |
---|
17 | DROP passguor, |
---|
18 | DROP puertorepo; |
---|
19 | |
---|
20 | # Cambio del nombre de las plantillas PXE para compatibilidad con UEFI. |
---|
21 | UPDATE ordenadores SET arranque='10' WHERE arranque='01'; |
---|
22 | |
---|
23 | # Actualizar gestores de los asistentes (ticket #915). |
---|
24 | UPDATE asistentes |
---|
25 | SET gestor = REPLACE(gestor, '/asistentes/', '/comandos/') |
---|
26 | WHERE gestor LIKE '../asistentes/%'; |
---|
Note: See
TracBrowser
for help on using the repository browser.