mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-22 15:53:50 -04:00
git-svn-id: http://gallery.svn.sourceforge.net/svnroot/gallery/trunk/eval/gx/gallery3/trunk@18408 57fcd75e-5312-0410-8df3-f5eb6fbb1595
11 lines
244 B
PHP
11 lines
244 B
PHP
<?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);'; |