
09-08-2012, 06:00 PM
|
|
|
Join Date: Oct 2005
Location: OC, California
Posts: 732
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by gibgib
Hi Dylanblitz,
That is very kind of you to offer that.
Enabling the product at the moment will cause the forum to not function so I would need to be working with you at the same time. I also back up just before doing ANYTHING to the database as I have been known to stuff tables.
If it's easier can someone format this below into a query I can run in mysql admin so I can see if the table is added manually?
Code:
$vbulletin->db->query_write("CREATE TABLE IF NOT EXISTS " . TABLE_PREFIX . "garage_images (
attach_id mediumint(8) unsigned NOT NULL auto_increment,
vehicle_id mediumint(8) unsigned NOT NULL default '0',
sub_id int(11) unsigned default NULL,
attach_type varchar(10) binary default NULL,
attach_location varchar(255) binary NOT NULL default '',
attach_hits mediumint(8) unsigned NOT NULL default '0',
attach_ext varchar(100) binary NOT NULL default '',
attach_file varchar(255) binary NOT NULL default '',
attach_thumb_location varchar(255) binary NOT NULL default '',
attach_is_image tinyint(1) unsigned NOT NULL default '0',
attach_date int(11) unsigned NOT NULL default '0',
attach_filesize int(20) unsigned NOT NULL default '0',
PRIMARY KEY (attach_id)
) ENGINE=MyISAM AUTO_INCREMENT=1");
|
The problem is you're missing quite a few tables, it's more then just the one table not being created.
|