summaryrefslogtreecommitdiff
path: root/kohana/config/cache_sqlite.php
blob: 818b89327e1e52681df7e523a020b8b097898352 (plain)
1
2
3
4
5
6
7
8
9
10
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
 * @package  Cache:SQLite
 */
$config['schema'] =
'CREATE TABLE caches(
	id VARCHAR(127) PRIMARY KEY,
	tags VARCHAR(255),
	expiration INTEGER,
	cache TEXT);';