MINOR Changed MSSQLDatabase::now() block comment to be more useful

This commit is contained in:
Sean Harvey 2010-02-03 07:53:08 +00:00
parent de7068d591
commit 7d67d25402

View File

@ -1025,11 +1025,9 @@ class MSSQLDatabase extends SS_Database {
}
/**
* Because NOW() doesn't always work...
* MSSQL, I'm looking at you
*
* SQL Server uses CURRENT_TIMESTAMP for the current date/time.
*/
function now(){
function now() {
return 'CURRENT_TIMESTAMP';
}