In the install file, the Postgres table definition appears to replicate the MySQL definition. This code breaks in Postgres 8.0.8 (at least). A correct table definition would be:

CREATE TABLE {views_fusion} (
vid integer NOT NULL,
mvid integer NOT NULL,
uses varchar(32) NOT NULL,
PRIMARY KEY(vid,mvid) )

Comments

fago’s picture

Status: Active » Fixed

thanks, I fixed it like you suggested.

Anonymous’s picture

Status: Fixed » Closed (fixed)