diff options
Diffstat (limited to 'kohana/config/cache_sqlite.php')
-rw-r--r-- | kohana/config/cache_sqlite.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/kohana/config/cache_sqlite.php b/kohana/config/cache_sqlite.php index 918224ce..818b8932 100644 --- a/kohana/config/cache_sqlite.php +++ b/kohana/config/cache_sqlite.php @@ -4,8 +4,7 @@ */ $config['schema'] = 'CREATE TABLE caches( - id varchar(127) PRIMARY KEY, - hash char(40) NOT NULL, - tags varchar(255), - expiration int, - cache blob);';
\ No newline at end of file + id VARCHAR(127) PRIMARY KEY, + tags VARCHAR(255), + expiration INTEGER, + cache TEXT);';
\ No newline at end of file |