Hallo allerseits,
wieder mal eine Frage zum Datenbank-Entwurf! An den anderen Fragen bin ich noch dran, da melde ich mich nachher nochmal :-)
Ich habe jetzt gerade mal mein Model gecheckt, und das Tool wirft mir fuer jede Tabelle eine Warnung raus:
"Existence of index: A table should contain at least one column, one index, one key, and one reference. Add missing item to the definition of the table!"
Dabei sieht der Code folgendermaßen aus:
create table BACKLINK
(
PK_BACKLINK tinyint unsigned not null,
URL tinytext not null,
primary key (PK_BACKLINK)
)
type = MYISAM;
Und laut MySQL-Doku ist ein primary key ein Index: "Most MySQL indexes (PRIMARY KEY, UNIQUE, INDEX, and FULLTEXT)..."
Was habe ich also falsch gemacht?
Danke für eure Hilfe,
Eddie
--
Old men and far travforelers may lie with authority.
Old men and far travforelers may lie with authority.