Closed (fixed)
Project:
Conference
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
1 Jun 2007 at 11:43 UTC
Updated:
1 Aug 2007 at 06:03 UTC
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)
)
Comments
Comment #1
mfh commentedaccording 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..)
Comment #2
(not verified) commented