From c4948d0e76fb05e4a5c1247ac102099634ce61fd Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Wed, 7 May 2008 08:35:46 +0000 Subject: [PATCH] added permanently ON UPDATE CURRENT_TIMESTAMP to column attributes --- libraries/config.default.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/config.default.php b/libraries/config.default.php index 561307d76..7cfb59e2c 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2439,8 +2439,6 @@ $cfg['ColumnTypes'] = array( /** * Attributes - * Note: the "ON UPDATE CURRENT_TIMESTAMP" attribute is added dynamically - * for MySQL >= 4.1.2, in libraries/tbl_properties.inc.php * * @global array $cfg['AttributeTypes'] */ @@ -2449,6 +2447,7 @@ $cfg['AttributeTypes'] = array( 'BINARY', 'UNSIGNED', 'UNSIGNED ZEROFILL', + 'ON UPDATE CURRENT_TIMESTAMP', );