added permanently ON UPDATE CURRENT_TIMESTAMP to column attributes

This commit is contained in:
Sebastian Mendel
2008-05-07 08:35:46 +00:00
parent f35c4ce7cc
commit c4948d0e76

View File

@@ -2439,8 +2439,6 @@ $cfg['ColumnTypes'] = array(
/** /**
* Attributes * 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'] * @global array $cfg['AttributeTypes']
*/ */
@@ -2449,6 +2447,7 @@ $cfg['AttributeTypes'] = array(
'BINARY', 'BINARY',
'UNSIGNED', 'UNSIGNED',
'UNSIGNED ZEROFILL', 'UNSIGNED ZEROFILL',
'ON UPDATE CURRENT_TIMESTAMP',
); );