PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'tienda_drupal.cache_views' doesn't exist: TRUNCATE {cache_views} ; Array ( ) in cache_clear_all() (line 165 of C:\xampp\htdocs\tienda\includes\cache.inc).
I tried using the query with MYSQL workbench but I get the error table dosent exists. I also used phpmyadmin queries and it wont create.
CREATE TABLE IF NOT EXISTS
cache_views
(cid
varchar(255) NOT NULL DEFAULT '' COMMENT 'Primary Key: Unique cache ID.',data
longblob COMMENT 'A collection of data to cache.',expire
int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry should expire, or 0 for never.',created
int(11) NOT NULL DEFAULT '0' COMMENT 'A Unix timestamp indicating when the cache entry was created.',serialized
smallint(6) NOT NULL DEFAULT '0' COMMENT 'A flag to indicate whether content is serialized (1) or not (0).', PRIMARY KEY (cid
), KEYexpire
(expire
) ) ;