When trying to install the module on a site running the PostGres DB, the table {term_image} is not installed.
This is due to an improper SQL query in taxonomy_image.install on the case: 'pgsql'

This must be corrected. I managed to create the table manually using the query:

CREATE TABLE term_image
(
  tid integer NOT NULL DEFAULT 0,
  path character varying(255),
  CONSTRAINT term_image_pkey PRIMARY KEY (tid)
)

/Sten

Comments

nancydru’s picture

Can you construct a patch?

nancydru’s picture

Status: Active » Closed (duplicate)

#101116

stenjo’s picture

I'm not sure how to do that. I'm working in an php Eclipse environment and have had an hard time applying patches to my eksisting projects. Any idea how this is done? Should have no problems posting a patch here if that is prefferred...

/Sten

stenjo’s picture

Ah, sorted!
Was actually very simple, but needed a CVS checkout to work.
Now I see it is implemented in the Head version.

nancydru’s picture

When you see "duplicate" you need to go to that issue and see if it has been fixed.