I have installed on postgres
topnobau - June 1, 2007 - 11:43
| Project: | Conference |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | topnobau |
| Status: | closed |
Jump to:
Description
I just thought i'd send you an email telling you what worked for me
For postgres this installs
case 'pgsql':
db_query("CREATE TABLE {conference} (
pnid integer NOT NULL default '0',
ruid integer NOT NULL default '0',
rnid integer NOT NULL default '0',
comment1 text NOT NULL,
comment2 text NOT NULL,
status int NOT NULL default '0',
PRIMARY KEY (pnid,ruid)
)");
db_query("CREATE TABLE {conference_decision} (
pnid int NOT NULL default '0',
decision integer NOT NULL default '0',
feedback text NOT NULL,
PRIMARY KEY (pnid)
)

#1
according to your success report, I changed the "longtext" to "text"
but I left "int" also in the single place where you changed it to integer.
please Follow up if you can confirm further success beyond installation
(also errors if any..)
#2