summaryrefslogtreecommitdiff
path: root/kohana/config/cache_sqlite.php
blob: 918224ce4a8c6f0b75991afbf577df6eb35db3c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
 * @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);';