Merge branch 'maint/7.0'
[ninja.git] / system / config / cache_sqlite.php
blob918224ce4a8c6f0b75991afbf577df6eb35db3c2
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3 * @package Cache:SQLite
4 */
5 $config['schema'] =
6 'CREATE TABLE caches(
7 id varchar(127) PRIMARY KEY,
8 hash char(40) NOT NULL,
9 tags varchar(255),
10 expiration int,
11 cache blob);';