ref #22 Añadido el campo imagen también a ubicaciones.

This commit is contained in:
2014-03-23 18:25:28 +01:00
parent c1841d12de
commit 6bcd2513d1
2 changed files with 4 additions and 0 deletions

View File

@@ -68,6 +68,7 @@ SET character_set_client = utf8;
CREATE TABLE `Ubicaciones` (
`id` smallint(5) unsigned NOT NULL auto_increment,
`Descripcion` varchar(50) NOT NULL COMMENT 'ordenable,link/Ubicacion',
`imagen` varchar(45) DEFAULT NULL COMMENT 'imagen',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8;
SET character_set_client = @saved_cs_client;