4
We have not removed items in the data structure, but we have added some elements - such as attachments.
You can update with no problems, but it will probably not function well until you update the database layout (which there is no way to do automatically)
I will make an update script to correct the database table layout - a feature, which should really be in the core (and will be, if I have it my way
)
Basically you need to run this in your database management tool (add your XOOPS prefix to the table name):
CREATE TABLE stories_files (
fileid int(8) unsigned NOT NULL auto_increment,
filerealname varchar(255) NOT NULL default '',
storyid int(8) unsigned NOT NULL default '0',
date int(10) NOT NULL default '0',
mimetype varchar(64) NOT NULL default '',
downloadname varchar(255) NOT NULL default '',
counter int(8) unsigned NOT NULL default '0',
PRIMARY KEY (fileid),
KEY storyid (storyid)
) TYPE=MyISAM;