Here are the install commands for postgresql. They work for me so far. (Not a postgresql expert)
$query1 = db_query("CREATE TABLE {accounttypes} (
atid SERIAL PRIMARY KEY,
name varchar(64) NOT NULL,
UNIQUE (name)
)");
$query2 = db_query("CREATE TABLE {accounttypes_roles} (
atid int NOT NULL default '0',
rid int NOT NULL default '0',
initial smallint NOT NULL default '0',
PRIMARY KEY (atid, rid)
)");
$query3 = db_query("CREATE TABLE {accounttypes_users} (
uid int NOT NULL default '0',
atid int NOT NULL default '0',
PRIMARY KEY (uid)
)");
Comments
Comment #1
rconstantine commentedThanks for this. Will add as soon as I get a chance.
Comment #2
rconstantine commentedI'm finally getting to this. Should upload a new release later today.
Comment #3
(not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.