When I tried to add links in the 4.7 version.
But I kept getting these mysql error replies saying that the field "newwindow" wasn't incorporated into the database.
And when you've no field to drop your data, you've got to make one ...
newwindow int(1) UNSIGNED yes NULL
The "linksdb.mysql" file should look like this :
CREATE TABLE `links_links` (
`id` int(10) unsigned NOT NULL auto_increment,
`name` varchar(255) default NULL,
`description` text,
`url` text,
`category` int(10) unsigned default NULL,
`active` int(1) unsigned default '1',
`clicks` int(10) unsigned default '0',
`dead` int(1) unsigned default '0',
`deadcomment` varchar(255) default NULL,
`deadby` int(10) unsigned default NULL,
`newwindow` int(1) unsigned default NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=4 ;
Comments
Comment #1
(not verified) commented