Files
gallery3/kohana/config/cache_sqlite.php
T

11 lines
244 B
PHP

<?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);';