mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-06 13:09:08 -04:00
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);'; |