Files
gallery3/system/config/cache_sqlite.php
T

10 lines
224 B
PHP
Raw Normal View History

<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* @package Cache:SQLite
*/
$config['schema'] =
'CREATE TABLE caches(
2009-03-17 18:56:01 +00:00
id VARCHAR(127) PRIMARY KEY,
tags VARCHAR(255),
expiration INTEGER,
cache TEXT);';