By Lubas on
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!
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
The main cache table: CREATE
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;
Fixed :)
Oke, thank you, I fixed it.