Installing this module while using MySQL produces an error with the oi_entity_type_fields table, specifically with the ftparameters varchar(2000) line.
MySQL only supports varchar up to 255, so either needs to be a TEXT field, or reduced in length.
Installing this module while using MySQL produces an error with the oi_entity_type_fields table, specifically with the ftparameters varchar(2000) line.
MySQL only supports varchar up to 255, so either needs to be a TEXT field, or reduced in length.
Comments
Comment #1
pukku commentedWhat version of MySQL are you using?
Comment #2
macros commentedMySQL client version: 4.0.27
Comment #3
pukku commentedHm. OK, they must have changed that by MySQL 5. I will take a look at it, but I don't see any reason why you can't just change it to be of type TEXT — I'm not sure if I had a reason for using varchar(2000) instead of TEXT, or if it's just something I picked up from Oracle.
Thanks for letting me know...
Ricky
Comment #4
pukku commented