Changeset 3696
- Timestamp:
- 02/01/08 16:15:34 (17 months ago)
- Files:
-
- 6 modified
-
branches/0.10/lib/Doctrine/DataDict/Mssql.php (modified) (1 diff)
-
branches/0.10/lib/Doctrine/Import/Mssql.php (modified) (1 diff)
-
branches/0.9/lib/Doctrine/DataDict/Mssql.php (modified) (1 diff)
-
branches/0.9/lib/Doctrine/Import/Mssql.php (modified) (1 diff)
-
trunk/lib/Doctrine/DataDict/Mssql.php (modified) (1 diff)
-
trunk/lib/Doctrine/Import/Mssql.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/DataDict/Mssql.php
r3692 r3696 160 160 case 'text': 161 161 case 'varchar': 162 case 'ntext': 163 case 'nvarchar': 162 164 $fixed = false; 163 165 case 'char': 166 case 'nchar': 164 167 $type[0] = 'string'; 165 168 if ($length == '1') { -
branches/0.10/lib/Doctrine/Import/Mssql.php
r3692 r3696 86 86 'fixed' => $decl['fixed'], 87 87 'unsigned' => $decl['unsigned'], 88 'notnull' => (bool) ( $val['is_nullable']=== 'NO'),88 'notnull' => (bool) (trim($val['is_nullable']) === 'NO'), 89 89 'default' => $val['column_def'], 90 90 'primary' => (strtolower($identity) == 'identity'), -
branches/0.9/lib/Doctrine/DataDict/Mssql.php
r3691 r3696 160 160 case 'text': 161 161 case 'varchar': 162 case 'ntext': 163 case 'nvarchar': 162 164 $fixed = false; 163 165 case 'char': 166 case 'nchar': 164 167 $type[0] = 'string'; 165 168 if ($length == '1') { -
branches/0.9/lib/Doctrine/Import/Mssql.php
r3691 r3696 86 86 'fixed' => $decl['fixed'], 87 87 'unsigned' => $decl['unsigned'], 88 'notnull' => (bool) ( $val['is_nullable']=== 'NO'),88 'notnull' => (bool) (trim($val['is_nullable']) === 'NO'), 89 89 'default' => $val['column_def'], 90 90 'primary' => (strtolower($identity) == 'identity'), -
trunk/lib/Doctrine/DataDict/Mssql.php
r3690 r3696 160 160 case 'text': 161 161 case 'varchar': 162 case 'ntext': 163 case 'nvarchar': 162 164 $fixed = false; 163 165 case 'char': 166 case 'nchar': 164 167 $type[0] = 'string'; 165 168 if ($length == '1') { -
trunk/lib/Doctrine/Import/Mssql.php
r3690 r3696 86 86 'fixed' => $decl['fixed'], 87 87 'unsigned' => $decl['unsigned'], 88 'notnull' => (bool) ( $val['is_nullable']=== 'NO'),88 'notnull' => (bool) (trim($val['is_nullable']) === 'NO'), 89 89 'default' => $val['column_def'], 90 90 'primary' => (strtolower($identity) == 'identity'),