diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 18:56:01 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 18:56:01 +0000 |
commit | 208fc9db683c51e3bcf1f24d1e5e0200e0f32d96 (patch) | |
tree | 68ef623d8c6e13cc15fc2fe6dbe13a32585b9fa6 /kohana/config/cache_sqlite.php | |
parent | 3f87c16223d7aca44f432efe99b35ab7afb0dbe4 (diff) |
Update Kohana to r4081.
This resolves ticket http://dev.kohanaphp.com/ticket/1156
1156: "Table prefix gets append to column name"
All tests pass.
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 |