Quote:
Originally Posted by burnist
They worrying thing is the thats the same version I'm using. I just looked at the vB install file and it had the equivelant line broken into
[sql]
PRIMARY KEY (modid)
)
[/sql]
Try that and maby it'll work 
|
I tried the following but I got the same error:
Code:
CREATE TABLE modslog (
modid int(10) auto_increment,
name varchar(250),
description varchar(250),
authur varchar(250),
version varchar(250),
date int(10)
PRIMARY KEY (modid)
)
and I also tried it this way:
Code:
CREATE TABLE modslog (
modid int(10) auto_increment,
name varchar(250),
description varchar(250),
authur varchar(250),
version varchar(250),
date int(10)
PRIMARY KEY(modid)
)
I tired both ways via vBulletin and also in phpMyAdmin.