root/trunk/system/config/cache_sqlite.php

Revision 3700, 189 bytes (checked in by Shadowhand, 12 days ago)

Updates to trunk:

  • Removed all SYSPATH file checks
  • Deleted some modules: code_coverage (3.0), shoutbox (defunct), user_guide (defunct), kobot (3.0), object_db (3.0)
  • Updated ORM and ORM_Iterator to match 3.0, enabling the new HABTM stuff, see r3636 and r3640
  • Property svn:eol-style set to LF
  • Property copyright set to Copyright (c) 2007 Kohana Team
  • Property svn:keywords set to Id
Line 
1<?php
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);';
Note: See TracBrowser for help on using the browser.