Ticket: 766,767
This commit is contained in:
parent
fcfff27a76
commit
e381fdde41
2 changed files with 4 additions and 1 deletions
|
@ -159,8 +159,11 @@ class Doctrine_DataDict_Mssql extends Doctrine_DataDict
|
||||||
break;
|
break;
|
||||||
case 'text':
|
case 'text':
|
||||||
case 'varchar':
|
case 'varchar':
|
||||||
|
case 'ntext':
|
||||||
|
case 'nvarchar':
|
||||||
$fixed = false;
|
$fixed = false;
|
||||||
case 'char':
|
case 'char':
|
||||||
|
case 'nchar':
|
||||||
$type[0] = 'string';
|
$type[0] = 'string';
|
||||||
if ($length == '1') {
|
if ($length == '1') {
|
||||||
$type[] = 'boolean';
|
$type[] = 'boolean';
|
||||||
|
|
|
@ -85,7 +85,7 @@ class Doctrine_Import_Mssql extends Doctrine_Import
|
||||||
'length' => $decl['length'],
|
'length' => $decl['length'],
|
||||||
'fixed' => $decl['fixed'],
|
'fixed' => $decl['fixed'],
|
||||||
'unsigned' => $decl['unsigned'],
|
'unsigned' => $decl['unsigned'],
|
||||||
'notnull' => (bool) ($val['is_nullable'] === 'NO'),
|
'notnull' => (bool) (trim($val['is_nullable']) === 'NO'),
|
||||||
'default' => $val['column_def'],
|
'default' => $val['column_def'],
|
||||||
'primary' => (strtolower($identity) == 'identity'),
|
'primary' => (strtolower($identity) == 'identity'),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue