You are here

function schema_pgsql_schema_type_map in Schema 5

Same name and namespace in other branches
  1. 6 engines/schema_pgsql.inc \schema_pgsql_schema_type_map()

File

engines/schema_pgsql.inc, line 49

Code

function schema_pgsql_schema_type_map() {
  static $map;
  if (!isset($map)) {
    $map = array_flip(db_type_map());

    // sigh
    $map['character varying'] = 'varchar:normal';
    $map['integer'] = 'int:normal';
  }
  return $map;
}