I installed SVN186 from a fresh install.
The BU admin table is still not working
Following is the result of a SHOW CREATE query I ran
---------------------------------------------------------------------
CREATE TABLE `jos_ak_stats` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`description` varchar(255) NOT NULL,
`comment` longtext,
`backupstart` timestamp NOT NULL default '0000-00-00 00:00:00',
`backupend` timestamp NOT NULL default '0000-00-00 00:00:00',
`status` enum('run','fail','complete') NOT NULL default 'run',
`origin` varchar(30) NOT NULL default 'backend',
`type` varchar(30) NOT NULL default 'full',
`profile_id` bigint(20) NOT NULL default '1',
`archivename` longtext,
`absolute_path` longtext,
`multipart` int(11) NOT NULL default '0',
PRIMARY KEY (`id`),
KEY `idx_stale` (`status`,`origin`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
--------------------------------------------------------------------
I also exported the created record to csv and following is the result. (The backup was of db-archive type)
"1";;NULL;"0000-00-00 00:00:00";"2010-07-18 20:59:51";"complete";"backend";"full";"1";NULL;NULL;"0"
I ran a compare file check on the install.sql in SVN186 against the same file in 3.0 pro distribution and found that they are the same.
My Joomla! version is 1.18.
Hope this helps