[TYPO3-german] tt_address
Ingo Renner
typo3 at ingo-renner.com
Fri May 4 09:31:47 CEST 2007
Michael Gnessner wrote:
> Falsche Tabellendefinition. Es darf nur ein Auto-Feld geben und dieses muss
> als Schl ssel definiert werden
das ist ja auch der Fall:
CREATE TABLE tt_address (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
name tinytext NOT NULL,
first_name tinytext NOT NULL,
middle_name tinytext NOT NULL,
last_name tinytext NOT NULL,
title varchar(40) DEFAULT '' NOT NULL,
email varchar(80) DEFAULT '' NOT NULL,
phone varchar(30) DEFAULT '' NOT NULL,
mobile varchar(30) DEFAULT '' NOT NULL,
www varchar(80) DEFAULT '' NOT NULL,
address tinytext NOT NULL,
company varchar(80) DEFAULT '' NOT NULL,
city varchar(80) DEFAULT '' NOT NULL,
zip varchar(20) DEFAULT '' NOT NULL,
region varchar(100) DEFAULT '' NOT NULL,
country varchar(100) DEFAULT '' NOT NULL,
image tinyblob NOT NULL,
fax varchar(30) DEFAULT '' NOT NULL,
deleted tinyint(3) unsigned DEFAULT '0' NOT NULL,
description text NOT NULL,
addressgroup int(11) DEFAULT '0' NOT NULL
PRIMARY KEY (uid),
KEY parent (pid),
KEY pid (pid,email)
);
Es sollte wie folgt laufen:
Kein tt_address oder cal installiert, keine Tabellen der Extensions
vorhanden.
1. tt_address installieren
2. cal installieren
Probier das mal...
Ingo
More information about the TYPO3-german
mailing list