2010-12-15 Miguel de Dios <miguel.dedios@artica.es>

* pandoradb.sql, extras/pandoradb_migrate_v3.1_to_v3.2.sql: increment the
	size of field "nombre" in table "tagente" for html entities.
	
	Fixes: #3136610



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3659 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-12-15 13:37:27 +00:00
parent fab9d73229
commit 8ecc1abbbe
3 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2010-12-15 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.sql, extras/pandoradb_migrate_v3.1_to_v3.2.sql: increment the
size of field "nombre" in table "tagente" for html entities.
Fixes: #3136610
2010-12-15 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_html.php, include/ajax/module.php: fixed when the module

View File

@ -18,6 +18,11 @@
-- Because Pandora Installer don't understand them
-- and fails creating database !!!
-- -----------------------------------------------------
-- Table `tagente`
-- -----------------------------------------------------
ALTER TABLE `tagente` MODIFY `nombre` varchar(600) BINARY NOT NULL default '';
-- -----------------------------------------------------
-- Table `tgrupo`
-- -----------------------------------------------------

View File

@ -40,7 +40,7 @@ CREATE TABLE IF NOT EXISTS `taddress_agent` (
CREATE TABLE IF NOT EXISTS `tagente` (
`id_agente` int(10) unsigned NOT NULL auto_increment,
`nombre` varchar(100) BINARY NOT NULL default '',
`nombre` varchar(600) BINARY NOT NULL default '',
`direccion` varchar(100) default NULL,
`comentarios` varchar(255) default '',
`id_grupo` int(10) unsigned NOT NULL default '0',