From ea0a8ce616774d3cdfd127e415c1211378a000da Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 28 Jun 2012 20:47:02 +0530 Subject: [PATCH] fixes in cacheitem table --- py/webnotes/install_lib/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/webnotes/install_lib/install.py b/py/webnotes/install_lib/install.py index d4b5ed428f..fa513958f8 100755 --- a/py/webnotes/install_lib/install.py +++ b/py/webnotes/install_lib/install.py @@ -142,8 +142,8 @@ class Installer: webnotes.conn.sql("""create table __CacheItem( `key` VARCHAR(180) NOT NULL PRIMARY KEY, `value` LONGTEXT, - `expires_on` TIMESTAMP - )""") + `expires_on` DATETIME + ) ENGINE=MyISAM DEFAULT CHARSET=utf8""")