The Postgres table create is missing in image_attach.install
Here is what must be added:
case 'pgsql':
db_query("
CREATE TABLE {image_attach} (
nid int NOT NULL default 0,
iid int NOT NULL default 0,
PRIMARY KEY (nid)
)
");
break;
Comments
Comment #1
drewish commentedthis has been committed from a different issue.