[Typo3-dev] tt_products 2.0.0 (table error)

Franz Holzinger franz at fholzinger.com
Fri Apr 8 16:48:28 CEST 2005


Hello René
>> Give more details how you came to this error.
>>
> ok, i´ve updated an older version of tt_products (1.2.7) on typo3.7.0 
> via the extension manager and the only way to get rid this error massage 
> was to reinsert the default key in ext_tables.sql.
> 
> there are two implementations of the same typosite so i can try to 
> reproduce the error.
> a dump of the table before the update(from ver 1.2.7):
> 
> #
> # Tabellenstruktur für Tabelle `tt_products`
> #
> 
> CREATE TABLE tt_products (
>  uid int(11) unsigned NOT NULL auto_increment,
>  pid int(11) unsigned NOT NULL default '0',
No, that is wrong.
It has been:
#
# Table structure for table 'tt_products'
#
CREATE TABLE tt_products (
   uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
   pid int(11) unsigned DEFAULT '0' NOT NULL,

Which MySQL version do you use?
Has something got damaged?

Franz




More information about the TYPO3-dev mailing list