mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-22 12:29:11 -04:00
This resolves ticket http://dev.kohanaphp.com/ticket/1156 1156: "Table prefix gets append to column name" All tests pass.
10 lines
224 B
PHP
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);'; |