This is what needs to be added:

case 'pgsql':
db_query("CREATE TABLE {upload_images} (
nid int NOT NULL default 0,
fid int NOT NULL default 0,
oid int NOT NULL default 0,
PRIMARY KEY (nid)
) ;");
db_query("CREATE INDEX upload_images_idx on upload_images(oid) ;");
break;

Comments

walkah’s picture

Project: Image » Upload Image
Version: 6.x-1.x-dev » master
Component: image.module » Code

Re-assigning this to Upload Image module

drewish’s picture

Status: Active » Fixed

thanks, this has been committed to 4.7 and HEAD.

Anonymous’s picture

Status: Fixed » Closed (fixed)