I see an update in download section for Co8.144. My existing was Co8.134
Try to install but fail.
The problem is on update sql script:
CREATE TABLE IF NOT EXISTS `tmp_tbl_gr` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(250) NOT NULL,
`type_id` int(10) NOT NULL,
`ordering` int(10) NOT NULL,
`description` text NOT NULL,
`checked_out` int(11) NOT NULL,
`checked_out_time` datetime NOT NULL,
PRIMARY KEY (`id`),
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
This part:
PRIMARY KEY (`id`),
it should be:
PRIMARY KEY (`id`)
(whithout comma)
Thank you
I see an update in download section for Co8.144. My existing was Co8.134
Try to install but fail.
The problem is on update sql script:
This part:
it should be:
(whithout comma)
Thank you