Changeset 4353
- Timestamp:
- 05/10/08 04:49:39 (8 months ago)
- Files:
-
- 1 modified
-
branches/0.11/lib/Doctrine/DataDict/Pgsql.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/DataDict/Pgsql.php
r4252 r4353 405 405 } 406 406 return 'INT'; 407 case 'inet': 408 return 'INET'; 409 case 'bit': 410 case 'varbit': 411 return 'VARBIT'; 407 412 case 'boolean': 408 413 return 'BOOLEAN'; … … 451 456 452 457 switch ($dbType) { 458 case 'inet': 459 $type[] = 'inet'; 460 break; 461 case 'bit': 462 case 'varbit': 463 $type[] = 'bit'; 464 break; 453 465 case 'smallint': 454 466 case 'int2':