Changeset 4353

Show
Ignore:
Timestamp:
05/10/08 03:49:39 (14 months ago)
Author:
jwage
Message:

fixes #980

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/lib/Doctrine/DataDict/Pgsql.php

    r4252 r4353  
    405405                } 
    406406                return 'INT'; 
     407            case 'inet': 
     408                return 'INET'; 
     409            case 'bit': 
     410            case 'varbit': 
     411                return 'VARBIT';                 
    407412            case 'boolean': 
    408413                return 'BOOLEAN'; 
     
    451456 
    452457        switch ($dbType) { 
     458            case 'inet': 
     459                $type[] = 'inet'; 
     460                break; 
     461            case 'bit': 
     462            case 'varbit': 
     463                $type[] = 'bit'; 
     464                break; 
    453465            case 'smallint': 
    454466            case 'int2':