Files
gallery3/kohana/config/cache_sqlite.php
T

11 lines
244 B
PHP
Raw Normal View History

2008-10-31 22:12:14 +00:00
<?php defined('SYSPATH') or die('No direct script access.');
/**
* @package Cache:SQLite
*/
$config['schema'] =
'CREATE TABLE caches(
id varchar(127) PRIMARY KEY,
hash char(40) NOT NULL,
tags varchar(255),
expiration int,
cache blob);';