
Add this to pntables.php
Just remember that this file will be changed whenever you upgrade
postnuke, so you have to do this again when you upgrade.
------------------------

$pntable['eCal'] = $prefix.'_eCal';

-------------------------


Add this to your database
change the "nuke" part of each table name, if you use a
different prefix.
--------

#
# Table structure for table 'nuke_eCal'
#

CREATE TABLE nuke_eCal (
   id int(11) DEFAULT '0' NOT NULL auto_increment,
   username varchar(255),
   stamp datetime,
   subject varchar(255),
   description blob,
   PRIMARY KEY (id)
);