event table not getting installed.... getting msg Table 'drupal-cvs.event' doesn't exist...... using xammp on local machine

Comments

ardas’s picture

You probably need to execute the following query in your database:

CREATE TABLE event (
  nid int(10) unsigned NOT NULL default '0',
  event_start int(10) unsigned NOT NULL default '0',
  event_end int(10) unsigned NOT NULL default '0',
  timezone int(10) NOT NULL default '0',
  PRIMARY KEY (nid),
  KEY event_start (event_start)
);

But, if you are using Drupal 4.7 it should be created after enabling event module. This query is in installationfile.