Ignore:
Timestamp:
2011/08/11 19:37:10 (15 years ago)
Author:
shutta
Message:

refs #800 (SQL標準関数を使用する)
CURRENT_TIMESTAMP を使用するように now() を置換。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/html/test/upgrade/index.php

    r20813 r21185  
    117117                'auto_update_flg' => '0', 
    118118                'del_flg' => '0', 
    119                 'update_date' => 'NOW()', 
     119                'update_date' => 'CURRENT_TIMESTAMP', 
    120120            ); 
    121121            $objQuery->update($table, $arrUpdate, $where, array($arrProduct['product_id'])); 
     
    127127                'auto_update_flg' => '0', 
    128128                'del_flg' => '0', 
    129                 'update_date' => 'NOW()', 
    130                 'create_date' => 'NOW()', 
     129                'update_date' => 'CURRENT_TIMESTAMP', 
     130                'create_date' => 'CURRENT_TIMESTAMP', 
    131131            ); 
    132132            $objQuery->insert($table, $arrInsert); 
Note: See TracChangeset for help on using the changeset viewer.