Hi all!
I've been very stupid and I accidentally deleted the cache table in my drupal database!
Is there any way to restore it?

Thank you so much!

Comments

Christopher Herberte’s picture

The main cache table:

CREATE TABLE `cache` (
`cid` varchar(255) NOT NULL default '',
`data` longblob,
`expire` int(11) NOT NULL default '0',
`created` int(11) NOT NULL default '0',
`headers` text,
`serialized` smallint(6) NOT NULL default '0',
PRIMARY KEY (`cid`),
KEY `expire` (`expire`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Lubas’s picture

Oke, thank you, I fixed it.