Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.2.0-BETA3
-
Fix Version/s: 1.2.0-RC1
-
Component/s: Import/Export
-
Labels:None
Description
There are some missing data types in the getPortableDeclaration function for MsSql. The following diff adds the types I found missing so far.
Thanks,
Mike
diff -r doctrine\lib\Doctrine\DataDict\Mssql.php Doctrine-1.1.2\lib\Doctrine\DataDict\Mssql.php
193,202d192
< case 'uniqueidentifier':
< $type[] = 'string';
< $length = 36;
< break;
< case 'sql_variant':
< case 'sysname':
< case 'binary':
< $type[] = 'string';
< $length = null;
< break;