I think "fiid" field of "feedapi_node_item" database table is unnecessary. "nid" as primary key should be enough.

Comments

alex_b’s picture

Agree.

aron novak’s picture

Assigned: Unassigned » aron novak
Status: Active » Fixed
mustafau’s picture

Status: Fixed » Needs work

In feedapi_node_update_4() function the following line

$ret[] = db_query("ALTER TABLE {feedapi_node_item} DROP COLUMN fiid");

should be

$ret[] = update_sql("ALTER TABLE {feedapi_node_item} DROP COLUMN fiid");

aron novak’s picture

Status: Needs work » Fixed

Thanks a lot for the notice! (finally i looked up api.drupal.org about the difference)

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.