From 208fc9db683c51e3bcf1f24d1e5e0200e0f32d96 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Tue, 17 Mar 2009 18:56:01 +0000 Subject: Update Kohana to r4081. This resolves ticket http://dev.kohanaphp.com/ticket/1156 1156: "Table prefix gets append to column name" All tests pass. --- kohana/config/cache_sqlite.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'kohana/config/cache_sqlite.php') 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 -- cgit v1.2.3