I have installed several translation modules on my D6.13 site (i18n, and other)
Not sure what exactly affects this error:
user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'tiny) unsigned DEFAULT 1, `words` INT DEFAULT NULL, PRIMARY KEY (tjid) ) /*!40' at line 6 query:
CREATE TABLE icl_translate_job ( `tjid` INT unsigned NOT NULL auto_increment, `rid` INT unsigned DEFAULT NULL, `uid` INT DEFAULT NULL, `translated` TINYINT unsigned DEFAULT 0, `manager_uid` INT(tiny) unsigned DEFAULT 1, `words` INT DEFAULT NULL, PRIMARY KEY (tjid) ) /*!40100 DEFAULT CHARACTER SET UTF8 */
in /home/****/http/includes/database.inc on line 517.
Comments
Comment #1
guysaban commentedI think this is an error that pertains to the translation_management module.
I think the following:
`manager_uid` INT(tiny) unsigned DEFAULT 1,should be:
`manager_uid` TINYINT unsigned DEFAULT 1,Comment #2
kars-t commentedThis was fixed by this commit
http://drupalcode.org/project/translation_management.git/blobdiff/249a47...
And is an issue for translation_management not i18n.