Hi,

inside the pgsql schema there is an error.

CREATE TABLE project_issue_state (
sid SERIAL,
name varchar(32) NOT NULL default '',
weight smallint DEFAULT '0' NOT NULL,
author_has smallint DEFAULT '0' NOT NULL,
PRIMARY KEY (sid)
) TYPE=MyISAM;

you can't have a "TYPE=MyISAM" inside a create table. So you have to remove this to install the module with postgresql.

Frederic Lebel

Comments

nedjo’s picture

Version: 4.6.x-1.x-dev » x.y.z
Status: Active » Fixed

Thanks for noting this, fixed.

Anonymous’s picture

Status: Fixed » Closed (fixed)