summaryrefslogtreecommitdiffstats
path: root/admin/Database/ogAdmBD-1.0.4-1.0.6pre.sql
diff options
context:
space:
mode:
Diffstat (limited to 'admin/Database/ogAdmBD-1.0.4-1.0.6pre.sql')
-rw-r--r--admin/Database/ogAdmBD-1.0.4-1.0.6pre.sql11
1 files changed, 7 insertions, 4 deletions
diff --git a/admin/Database/ogAdmBD-1.0.4-1.0.6pre.sql b/admin/Database/ogAdmBD-1.0.4-1.0.6pre.sql
index 38c9b93c..c3766330 100644
--- a/admin/Database/ogAdmBD-1.0.4-1.0.6pre.sql
+++ b/admin/Database/ogAdmBD-1.0.4-1.0.6pre.sql
@@ -63,12 +63,15 @@ INSERT INTO parametros (idparametro, nemonico, descripcion, nomidentificador, no
# Imágenes incrementales, soporte para varios discos y fecha de creación
# (tickets #565, #601 y #677).
ALTER TABLE imagenes
- ADD idordenador INT(11) NOT NULL AFTER idrepositorio,
- ADD numdisk SMALLINT NOT NULL DEFAULT 1 AFTER idordenador,
+ MODIFY idrepositorio INT(11) NOT NULL DEFAULT 0,
+ MODIFY numpar SMALLINT NOT NULL DEFAULT 0,
+ MODIFY codpar INT(8) NOT NULL DEFAULT 0,
+ ADD idordenador INT(11) NOT NULL DEFAULT 0 AFTER idrepositorio,
+ ADD numdisk SMALLINT NOT NULL DEFAULT 0 AFTER idordenador,
ADD tipo SMALLINT NULL,
- ADD imagenid INT NOT NULL DEFAULT '0',
+ ADD imagenid INT NOT NULL DEFAULT 0,
ADD ruta VARCHAR(250) NULL,
- ADD fechacreacion DATETIME NULL;
+ ADD fechacreacion DATETIME DEFAULT NULL;
UPDATE imagenes SET tipo=1;
# Cambio de tipo de grupo.