summaryrefslogtreecommitdiff
path: root/kohana/config/cache_sqlite.php
blob: 199252df4d25767006a659e492063819fce011d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?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);';