- added comment with MYSQL create table command

This commit is contained in:
Uwe.Tews
2009-11-27 21:06:17 +00:00
parent 27d3a21fb4
commit 9f18a6bf62

View File

@@ -4,6 +4,15 @@
* Smarty Plugin CacheResource Mysql
*
* Implements MYSQL as resource for the HTML cache
*
*CREATE TABLE `smarty_cache` (
* `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
*
* @package Smarty
* @subpackage Plugins