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
Comment #1
nedjoThanks for noting this, fixed.
Comment #2
(not verified) commented