Files
gallery3/kohana/config/cache_sqlite.php
Bharat Mediratta 208fc9db68 Update Kohana to r4081.
This resolves ticket http://dev.kohanaphp.com/ticket/1156
1156: "Table prefix gets append to column name"

All tests pass.
2009-03-17 18:56:01 +00:00

10 lines
224 B
PHP

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