From 4c4ce1e5bfca8db841c5aa512dcd51a8f9f7c2d0 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Mon, 30 Nov 2009 21:20:09 +0000 Subject: [PATCH] - update of comment --- libs/plugins/cacheresource.mysql.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/plugins/cacheresource.mysql.php b/libs/plugins/cacheresource.mysql.php index 87156c3f..a31379ee 100644 --- a/libs/plugins/cacheresource.mysql.php +++ b/libs/plugins/cacheresource.mysql.php @@ -5,15 +5,15 @@ * * Implements MYSQL as resource for the HTML cache * -*CREATE TABLE `smarty_cache` ( +*CREATE TABLE `SMARTY_CACHE` ( +* `Id` int(12) NOT NULL, * `CacheContents` mediumtext NOT NULL, * `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, * `CacheId` varchar(100) NOT NULL, * `CompileId` varchar(100) NOT NULL, * `ResourceName` varchar(100) NOT NULL, * UNIQUE KEY `NewIndex_1` (`Id`) -*) ENGINE=MyISAM DEFAULT CHARSET=latin1 -* +*) ENGINE=MyISAM DEFAULT CHARSET=latin1* * @package Smarty * @subpackage Plugins * @author Uwe Tews