Incomplete og_aggregator_feed table creation script
| Project: | OG Aggregator |
| Version: | 4.7.x-0.1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Xiaoli Wang |
| Status: | closed |
Jump to:
Gave critical tag because the issue affected successful installation for me.
In file og_aggregator.install, is line:
"CREATE TABLE og_aggregator_feed (
fid int(10) NOT NULL auto_increment,
title varchar(255) NOT NULL default '',
url varchar(255) NOT NULL default '',
refresh int(10) NOT NULL default '0',
checked int(10) NOT NULL default '0',
link varchar(255) NOT NULL default '',
description longtext,
image longtext,
etag varchar(255) NOT NULL default '',
modified int(10) NOT NULL default '0',
block tinyint(2) NOT NULL default '0',
nid int(10) unsigned NOT NULL default '0',
keyword varchar(255) NOT NULL default '',
PRIMARY KEY (fid),
UNIQUE KEY duplicate (url,nid)
) DEFAULT CHARACTER SET utf8;"
);
This caused issues with OG aggregator use: Log files collected database complaints at absence of "antikeyword" field, and feeds did not show up in group aggregator pane.
Adding following line between lines starting "keyword varchar..." and "PRIMARY KEY" fixes problem:
antikeyword varchar(255) NOT NULL default '',
My diagnosis is that field not properly created at install, needs to be added to table after install, or amend install file as above. Please advise.

#1
got that.
thanks very much.
I'll correct this bug immediately, and publish a new release.
#2
I've published a new release for fixed bug.
#3