2014-01-20 Ramon Novoa <rnovoa@artica.es>
* pandoradb.sql: Changed the type of tnetwork_component.description to TEXT. Fixes ticket #487. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9346 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
17c6d55fd6
commit
91549b5a7c
|
@ -1,3 +1,8 @@
|
||||||
|
2014-01-20 Ramon Novoa <rnovoa@artica.es>
|
||||||
|
|
||||||
|
* pandoradb.sql: Changed the type of tnetwork_component.description to
|
||||||
|
TEXT. Fixes ticket #487.
|
||||||
|
|
||||||
2014-01-20 Miguel de Dios <miguel.dedios@artica.es>
|
2014-01-20 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* mobile/include/user.class.php,
|
* mobile/include/user.class.php,
|
||||||
|
|
|
@ -611,7 +611,7 @@ CREATE TABLE IF NOT EXISTS `tmodule_group` (
|
||||||
CREATE TABLE IF NOT EXISTS `tnetwork_component` (
|
CREATE TABLE IF NOT EXISTS `tnetwork_component` (
|
||||||
`id_nc` int(10) unsigned NOT NULL auto_increment,
|
`id_nc` int(10) unsigned NOT NULL auto_increment,
|
||||||
`name` text NOT NULL,
|
`name` text NOT NULL,
|
||||||
`description` varchar(250) default NULL,
|
`description` TEXT NOT NULL,
|
||||||
`id_group` int(6) NOT NULL default '1',
|
`id_group` int(6) NOT NULL default '1',
|
||||||
`type` smallint(6) NOT NULL default '6',
|
`type` smallint(6) NOT NULL default '6',
|
||||||
`max` bigint(20) NOT NULL default '0',
|
`max` bigint(20) NOT NULL default '0',
|
||||||
|
|
Loading…
Reference in New Issue