Argg!
When posting database errors like this it would really be helpful if you would include links to the database your using or the release posts for them. Anyways
If your item database doesn't have the minstatus field you need to remove it from the table before you can source in the old format items.
(from memory so it might be wrong there is a manual, look in it if this errors)
mysql> alter table items drop minstatus;
Now you can source in an old format database, but you'll have to update it before you can use it.
mysql> alter table items add minstatus tinyint(3) unsigned not null default '0';
|