Commit 648b1d5b authored by Valeriy Pravoslavnyy's avatar Valeriy Pravoslavnyy

Update SQLServer2008Platform.php

Added support of  maps a Doctrine datetimetz type to a MS SQL SERVER type datetimeoffset(6)
parent d3456743
......@@ -53,6 +53,14 @@ class SQLServer2008Platform extends SQLServer2005Platform
return 'TIME(0)';
}
/**
* {@inheritDoc}
*/
public function getDateTimeTzTypeDeclarationSQL(array $fieldDeclaration)
{
return 'datetimeoffset(6)';
}
/**
* {@inheritDoc}
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment