Quote:
Originally Posted by bashy
No go for launch im afraid  got this error
Code:
Database error in vBulletin 3.5.3:
Invalid SQL:
CREATE TABLE `thread_fields_admin` (
`title` varchar(100) NOT NULL default '',
`fieldid` int(10) unsigned NOT NULL auto_increment,
`description` varchar(200) NOT NULL default '',
`forums` varchar(200) NOT NULL default '',
`type` varchar(100) NOT NULL default '',
`size` char(3) NOT NULL default '40',
`options` varchar(200) NOT NULL default '',
`display` varchar(100) NOT NULL default '1',
PRIMARY KEY (`fieldid`)
) TYPE=MyISAM;;
MySQL Error : Table 'thread_fields_admin' already exists
Error Number : 1050
Date : Saturday, March 11th 2006 @ 06:07:43 PM
Script : http://www.bashys-place.com/forums/admincp/plugin.php
Referrer : http://www.bashys-place.com/forums/admincp/plugin.php?do=productadd
|
Hm. That's not a major problem, it's just the fact that it's trying to do a query from a previos version, which it shouldn't be trying to do since you already have that. For now, just upload all files and then manually run the query:
Code:
ALTER TABLE threadfield_admin ADD COLUMN
`required` varchar(10) NOT NULL default 'no';