
12-20-2009, 11:00 AM
|
|
|
Join Date: Jan 2008
Location: Bridge - Enterprise
Posts: 325
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
- Click on vbthread
- This will display the structure of the thread table.
- Scroll down to the bottom and check if there is slideshowid
- If there is none, click on SQL tab at the top and paste the table altering code in there
Code:
ALTER TABLE `vbthread` ADD `slideshowid` INT( 10 ) UNSIGNED DEFAULT '0'
Do the same with vbuser.
- Check if there is a vbslideshow on the left hand-side. If there is none, then do the following:
- Click on your vbulletin database name (top, left hand-side). This will display the structure
- Click on SQL tab and paste the followingtable creation code in there:
Code:
CREATE TABLE IF NOT EXISTS`vbslideshow` (
`slideshowid` INT(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
`userid` INT(10) NOT NULL,
`username` VARCHAR(50) NOT NULL,
`dateline` INT(10) NOT NULL,
`threadid` INT(10) NOT NULL,
`description` mediumtext NOT NULL,
`cover` varchar(250) NOT NULL,
`title` varchar(250) NOT NULL);
ALTER TABLE `vbslideshow` ADD INDEX ( `threadid` );
Basically, this must be done automatically at first installation of the mod.
|